tabby/ee/tabby-ui/lib/gql/request-documents.tsx

17 lines
244 B
TypeScript
Raw Normal View History

2023-11-20 18:36:30 +00:00
import { graphql } from './generates'
export const GetAllWorkers = graphql(/* GraphQL */ `
query GetWorkers {
workers {
kind
name
addr
device
arch
cpuInfo
cpuCount
cudaDevices
}
}
`)