open:fragment

fragment

fragment liftInfo on Lift {
  name
  status
  capacity
  night
  elevationGain
}

query {
  Lift(id: "jazz-cat") {
    ...liftInfo
    trailAccess {
      name
      difficulty
    }
  }
  Trail(id: "river-run"){
    name
    difficulty
    accessedByLifts {
      ...liftInfo
    }
  }
}


  • open/fragment.txt
  • 마지막으로 수정됨: 2021/10/08 04:51
  • 저자 127.0.0.1