Skip to main content

stationsByUuids

Get specific Stations by their UUIDs

stationsByUuids(
uuids: [ID!]!
): [Station!]!

Arguments

stationsByUuids.uuids ● [ID!]! non-null scalar common

Type

Station object stations

Entity representing an RTK reference station

Code Samples

curl -X POST https://graphql.pointonenav.com/graphql \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_TOKEN" \
-d '{
"query": "query StationsByUuids($uuids: [ID!]!) { stationsByUuids(uuids: $uuids) { uuid name status position { llaDec { lat lon alt } } } }",
"variables": {
"uuids": [
"station-uuid-1",
"station-uuid-2"
]
}
}'