12 lines
177 B
TypeScript
12 lines
177 B
TypeScript
import { gql } from '@apollo/client';
|
|
|
|
export const GET_AUTOMATISCH_INFO = gql`
|
|
query GetAutomatischInfo {
|
|
getAutomatischInfo {
|
|
isCloud
|
|
isMation
|
|
}
|
|
}
|
|
`;
|
|
|