A GQL query .
| JSON representation |
|---|
{ "queryString" : string , "allowLiterals" : boolean , "namedBindings" : { string : { object ( |
| Fields | |
|---|---|
queryString
|
A string of the format described here . |
allowLiterals
|
When false, the query string must not contain any literals and instead must bind all values. For example, |
namedBindings
|
For each non-reserved named binding site in the query string, there must be a named parameter with that name, but not necessarily the inverse. Key must match regex An object containing a list of |
positionalBindings[]
|
Numbered binding site @1 references the first numbered parameter, effectively using 1-based indexing, rather than the usual 0. For each binding site numbered i in |

