mirror of
https://github.com/unraid/api.git
synced 2026-01-06 16:49:49 -06:00
16 lines
274 B
TypeScript
16 lines
274 B
TypeScript
import { graphql } from '~/composables/gql/gql';
|
|
|
|
export const TEST_FRAGMENT = graphql(/* GraphQL */`
|
|
fragment TestFragment on Cloud {
|
|
error
|
|
}
|
|
`);
|
|
|
|
export const TEST_QUERY = graphql(/* GraphQL */`
|
|
query cloudError {
|
|
cloud {
|
|
...TestFragment
|
|
}
|
|
}
|
|
`);
|