We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dashboard, grid_client
Currently, we're making a request per node to get its twin ID via Graphql.
Use nodeID_in to get all twins at once.
nodeID_in
query getNodeTwinId { nodes(where: {nodeID_in: [10, 11, 12, 13]}) { twinID nodeID } }
Issue is in
tfgrid-sdk-ts/packages/grid_client/src/primitives/nodes.ts
Lines 108 to 126 in 3f66011
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Which package/s are you suggesting this feature for?
Dashboard, grid_client
Is your feature request related to a problem? Please describe
Currently, we're making a request per node to get its twin ID via Graphql.
Describe the solution you'd like
Use
nodeID_in
to get all twins at once.Issue is in
tfgrid-sdk-ts/packages/grid_client/src/primitives/nodes.ts
Lines 108 to 126 in 3f66011
The text was updated successfully, but these errors were encountered: