blocked list page

This commit is contained in:
Irtiza-h30
2020-07-27 19:08:57 -04:00
parent 0a1c19c87e
commit e51fe183e5
4 changed files with 90 additions and 0 deletions

View File

@@ -317,3 +317,15 @@ export const FILTER_SYSTEM_EVENTS = gql`
}
}
`;
export const GET_BLOCKED_CLIENTS = gql`
query GetBlockedClients($customerId: ID!) {
getBlockedClients(customerId: $customerId) {
customerId
macAddress
createdTimestamp
lastModifiedTimestamp
details
}
}
`;