1import { gql } from '@apollo/client' 2 3export const NODES_QUERY = gql` 4 query GetNodes { 5 nodesInfo { 6 nodes { 7 id 8 uri 9 status 10 maxSession 11 slotCount 12 stereotypes 13 version 14 sessionCount 15 osInfo { 16 version 17 name 18 arch 19 } 20 } 21 } 22} 23` 24 25