We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec54da9 commit 8bf433aCopy full SHA for 8bf433a
oil-gas-agent-automation/operations-agent.graphqls
@@ -2,8 +2,18 @@
2
scalar DateTime
3
4
type Query {
5
+ """
6
+ Returns information about the well/asset including it's maintenance records, manual,
7
+ description, and other important information.
8
9
Assets(asset_id: Int!, limit: Int = 20, offset: Int = 0): [Assets!]
10
11
+ Returns the flowrate readings for a given well/asset within the specified range order by timestamp decreasing.
12
13
FlowRateByRange(assetId: Int!, minRate: Float = 0, maxRate: Float = 10000): [EnrichedFlowRate!]
14
15
+ Returns recent pressure and temperature readings for a given well/asset by id.
16
17
RecentPressure(assetId: Int!, limit: Int = 25, offset: Int = 0): [RecentPressure!]
18
}
19
0 commit comments