implemented dashboard

This commit is contained in:
Sean Macfarlane
2020-06-29 04:11:07 -04:00
parent f2ad09a37e
commit 4265e9bb1a
3 changed files with 73 additions and 16 deletions

View File

@@ -157,3 +157,18 @@ export const FILTER_SERVICE_METRICS = gql`
}
}
`;
export const GET_ALL_STATUS = gql`
query GetAllStatus($customerId: Int!, $statusDataTypes: [String]) {
getAllStatus(customerId: $customerId, statusDataTypes: $statusDataTypes) {
items {
customerId
detailsJSON
}
context {
lastPage
cursor
}
}
}
`;