mirror of
https://github.com/unraid/api.git
synced 2026-04-29 19:49:48 -05: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
|
|
}
|
|
}
|
|
`);
|