bug fix
- Queries
- All Stories
- Search
- Advanced Search
- Transactions
- Transaction Logs
Advanced Search
Dec 12 2022
Dec 9 2022
rebase and experimetal features
Dec 8 2022
extra tests for pagination
Dec 2 2022
rebase
bug fix
Dec 1 2022
Nov 30 2022
Fix for python 3.7
In D8906#231563, @vlorentz wrote:In D8906#231560, @jayeshv wrote:Thanks, just fixed it :)
You can't use .removeprefix and .removesuffix because we still need to support Python 3.7. Also, the fix is not enough, because you need to change the encoding scheme, as it is still not injective:
>>> get_decoded_cursor(get_encoded_cursor("foo")) 'foo' >>> get_decoded_cursor(get_encoded_cursor("TRKJJeGRfooJJEHDNOHT")) 'foo'This fix looks somewhat like a hack to me. Do you think we should use some other method (maybe encrypting the cursor) to fix this issue?
Is it really needed, though? If yes, encrypting looks overkill. If you just want to make it hard to work with, append the (b64-encoded) output of zlib.crc32() or something
In D8906#231554, @vlorentz wrote:.lstrip() and .rstrip() are not .removeprefix() and .removesuffix():
>>> get_decoded_cursor(get_encoded_cursor("FOO")) 'F'
bug fix
typo fix
remove unused code
Nov 29 2022
address review comments
Nov 21 2022
Use hashes instead of hash
rebase
In D8859#230390, @vlorentz wrote:oh you already support that, alright then
In D8859#230346, @vlorentz wrote:that's not the actual MIME type though; encoding is only an optional part of it
rebase
Nov 18 2022
Support query variables with the cost validator
Oct 28 2022
Oct 26 2022
Oct 25 2022
Schema changes
test fixes
Oct 24 2022
Use a generic identifier
Oct 21 2022
Oct 20 2022
Oct 19 2022
Oct 18 2022
remove commented code
type checks
more docs
address review commnets
Oct 17 2022
rebase
Oct 13 2022
In T4627#93288, @KShivendu wrote:P1090 should be helpful
iirc, we made some changes even after this. But the final version shouldn't be too different from this :)
Oct 11 2022
Oct 10 2022
What about having a UI like in Github or Phabricator to create an advanced query?
eg:
https://github.com/search/advanced
Oct 7 2022
Oct 6 2022
This diff is waiting for ariadne 0.17 release
https://github.com/mirumee/ariadne/milestone/17
Oct 5 2022
Use kwargs instead of variables dict
In D8629#224551, @vlorentz wrote:nice!
Have you considered switching to **kwargs instead of a single variables argument? I should make calls shorter (saves quotes and variables=)
Sep 30 2022
fix tests