What is the correct GraphQL syntax for Select *?

Viewed 21

How would I write a select all query in GraphSQ. Is Select * possible with introspection on?

Also did the syntax change as I see T. required in some versions?

query: """select * from "categories" where label = $1"""

or

query: """select T.* from "categories" T where T."label" = $1"""
0 Answers
Related