blob: f6670f060db99309ca5b745339d4d377155a51ce [file] [log] [blame]
{
"tests": [
{
"description": "query: basic OrderBy clauses",
"comment": "Multiple OrderBy clauses combine.",
"query": {
"collPath": "projects/projectID/databases/(default)/documents/C",
"clauses": [
{
"orderBy": {
"path": {
"field": [
"b"
]
},
"direction": "asc"
}
},
{
"orderBy": {
"path": {
"field": [
"a"
]
},
"direction": "desc"
}
}
],
"query": {
"from": [
{
"collectionId": "C"
}
],
"orderBy": [
{
"field": {
"fieldPath": "b"
},
"direction": "ASCENDING"
},
{
"field": {
"fieldPath": "a"
},
"direction": "DESCENDING"
}
]
}
}
}
]
}