2023-01-10 14:46:27 +03:00

12 lines
257 B
TypeScript

/* eslint-disable import/prefer-default-export */
import { gql } from '@apollo/client';
export const QUERY_GET_AGENT = gql`
query GetAgent($agentid: Uuid!) {
agent: account(accountid: $agentid) {
label: name
value: accountid
}
}
`;