Many organizations ask: How do we sync asset and work order data across systems without manual headaches?
Whether you’re integrating a CMMS (Computerized Maintenance Management System) like AiM Asset Management or streamlining operations with Willow, we’ve mapped out how to connect the dots.
You can use the operators eq (equals), gt (greater than), gte (greater than or equal to), lt (less than), and lte (less than or equal to) to filter Work Orders by the date they were created or updated.
Request ResponseCopy1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
{ workOrders(filter: {dateUpdated: {gte: "2025-07-30"}}) { id name exactType jobType jobStatus jobPriority dateCreated dateUpdated relatesTo { __typename ... on Building { id name } ... on Space { id name } ... on Thing { id name exactType } ... on Zone { id name } } } }
Combine time filter operators to find work orders within a date range:
Request ResponseCopy1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
{ workOrders( filter: {dateUpdated: {gte: "2025-07-28"}, and: {dateUpdated: {lt: "2025-07-30"}}} ) { id name exactType jobType jobStatus jobPriority dateCreated dateUpdated relatesTo { __typename ... on Building { id name } ... on Space { id name } ... on Thing { id name exactType } ... on Zone { id name } } } }
Mapped links Buildings, Spaces, Things and Zones across CMMS and asset management systems through the use of external identities.
Request ResponseCopy1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
{ workOrders(filter: {id: {eq: "CLSBO8n9MwTaKwQ6Cusj9Gw5X"}}) { id name exactType jobType jobStatus jobPriority dateCreated dateUpdated identities { ... on External Identity { value } relatesTo { ... on Building { id name exactType identities { ... on External Identity { value } } } ... on Space { id name exactType identities { ... on External Identity { value } } } ... on Thing { id name exactType identities { ... on External Identity { value } } } ... on Zone { id name exactType identities { ... on External Identity { value } } } } } }