Datastore Query By Key

So sorry for the delay here, @BAS! Thank you for the callout, I believe I fixed the links now :slight_smile:

This seems to be working for me:

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"

Does that help at all? Let me know!