0

次のフラグメント定義があります

  fragment LocationFragment_viewer on Viewer
    @argumentDefinitions(userId: {type: "Int!"}) {
    results: locations(
      user_id: $userId
    ) {
      ...some_other_fragments
    }
  }

引数の定義を変更せずに、GraphQL クエリで引数をuser_idto (id をラップする単なる配列)に変更したいと考えています。user_ids

だから私は次のようなものが欲しい:

  fragment LocationFragment_viewer on Viewer
    @argumentDefinitions(userId: {type: "Int!"}) {
    results: locations(
      user_ids: [$userId]
    ) {
      ...some_other_fragments
    }
  }

これは可能ですか?私の場合、引数の定義を変更するのは少し難しいので、そのルートに行かなくても簡単にできることがあるかどうかを確認しようとしています。

ありがとうございました!

4

1 に答える 1