finished ap profiles

This commit is contained in:
Sean Macfarlane
2020-06-29 03:32:05 -04:00
parent 369e970814
commit 93b8575629
4 changed files with 33 additions and 20 deletions

View File

@@ -157,3 +157,20 @@ export const FILTER_SERVICE_METRICS = gql`
}
}
`;
export const GET_ALL_PROFILES = gql`
query GetAllProfiles($customerId: Int!, $cursor: String, $type: String) {
getAllProfiles(customerId: $customerId, cursor: $cursor, type: $type) {
items {
id
name
profileType
details
}
context {
cursor
lastPage
}
}
}
`;