問題タブ [graphql-js]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
graphql - ミューテーションのエラー処理
突然変異として自転車を作成しようとしているとしましょう
光沢のある車輪を作るのに十分な鋼がなかったらどうなりますか? おそらく、クライアント側のエラーが必要になるでしょう。以下のミューテーションを使用して、graphQLサーバーからそれを取得するにはどうすればよいですか:
サーバー/私が定義したエラータイプを返すのと同じくらい簡単ですか?
javascript - Relay変数を列挙値として設定するには?
フラグメントの例:
引数は次のorderBy
列挙値を受け入れます: firstNameASC
/ firstNameDESC
/ lastNameASC
/ lastNameDESC
.
実行this.setVariables({orderBy: 'firstName'})
すると、orderBy
変数は文字列として GraphQL サーバーに渡されます。
これらの変数を文字列として送信せずに Relay の setVariables に渡すにはどうすればよいですか?
graphql - The significance of the string immediately after query type (query / mutation) GraphQL
I was wondering what the significance of the string that follows the query type, in this case "ProvisionQueues", it seems removing this from the string doesn't affect anything - is it just for logging or something. meta data?
graphql - graphql は _id フィールドのみを解決し、他のフィールドは null
データは確実にサーバーから取得されていますが、GraphQL はタイトルとコンテンツのプロパティを null として解決しています - のコンソール ログはそれを確認します。_id プロパティのみが graphql から返されます。これがクエリから返されるものjson { listings: [ { _id: '56e6c94f1cf94a7c0a4e22ba', title: null, content: null } ] }
です。すべてが正しく設定されていることがわかる限り、タイトルとコンテンツに GraphQLIDType を指定して、タイプの違いを排除しようとしました。
私はgraphqlクエリを持っています:
私のルートクエリタイプ:
そして私の「リストタイプ」: