0

I have Datastore Viewer URLs stored for specific queries such as:

SELECT * FROM User WHERE __key__ = key('User',9999)

which now, in the updated console interface, don't work. Has the syntax changed?

leontx
  • 1,165
  • 1
  • 14
  • 24

1 Answers1

0

It appears that the key() function has been changed. It worked for me by removing the single quotes, i.e.:

SELECT * FROM User WHERE __key__ = key(User,9999)
leontx
  • 1,165
  • 1
  • 14
  • 24