Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 613 Bytes

File metadata and controls

25 lines (20 loc) · 613 Bytes
link get-moment-by-id
is published

Get a moment by id

This is a sample GraphQL query to get moment by id. Be sure to switch "moment-id" to the actual id you're curious about.

query getMomentById {
  moment(id: "moment-id") {
    id
    live
    startTime
    endTime
  }
}

Get a moment by ID, see it in action with our GraphQL tool.