How to use Cloud Datastore query by key

Hey @skyler_croogloo!

Looks like we might be missing a couple features in Retool.

Entities in datastore can be queried by name (String) or an auto id (int).

  • 'Get Entity by Key' only allows for the name to be queried, as the key value is passed as a String
  • 'Delete Entity by Key' only allows for the id to be queried as the key value is parsed as an Int before being passed in
  • 'Query Datastore' Where conditions can only take in strings as inputs, even {{123}}will be parsed as "123"

These work:

For your specific query, are you noting that the query is passing the key, just as a string of the "key" instead of just the key?