mirror of
https://github.com/unraid/api.git
synced 2026-01-04 07:29:48 -06:00
21 lines
301 B
TypeScript
21 lines
301 B
TypeScript
import { graphql } from '~/composables/gql';
|
|
|
|
export const INFO_VERSIONS_QUERY = graphql(/* GraphQL */ `
|
|
query InfoVersions {
|
|
info {
|
|
id
|
|
os {
|
|
id
|
|
hostname
|
|
}
|
|
versions {
|
|
id
|
|
core {
|
|
unraid
|
|
api
|
|
}
|
|
}
|
|
}
|
|
}
|
|
`);
|