Skip to content

Latest commit

 

History

History
31 lines (28 loc) · 391 Bytes

GraphQL-Queries.md

File metadata and controls

31 lines (28 loc) · 391 Bytes
  1. Query:
{
  test_alarms(
    luceneFilter: "3c50a87291707504aa000000000000000000000045"
    filter: {key: systemId}
    sort: [{ field:id,order: desc }]
    limit: { size: 5, offset: 0 }
  ) {
 		items {
 		  id
 		  consoleUri
 		  type
 		  resourceUri
 		}
    total
    pageLimit
  }
  1. Mutation:
{
human(id: "1000") {
  name
  height
}
}