mirror of
https://github.com/unraid/api.git
synced 2026-05-03 13:40:36 -05:00
8 lines
143 B
TypeScript
8 lines
143 B
TypeScript
import { graphql } from '~/composables/gql/gql';
|
|
|
|
export const ONLINE_QUERY = graphql(/* GraphQL */`
|
|
query OnlineStatus {
|
|
online
|
|
}
|
|
`);
|