We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
一部のクエリが失敗しても全体としてエラーを返さないように
query ExampleQuery($accountId: AccountId!) { account(id: $accountId) { id name birthDate } }
{ "data": { "account": { "id": "53ab13fdb5ae8b4caedcbdfe64fd679d", "name": "開発用アカウントB", "birthDate": null } }, "errors": [ { "message": "誕生日は、同じチームに所属しているアカウントのみ見ることができる", "locations": [ { "line": 5, "column": 5 } ], "path": [ "account", "birthDate" ], "extensions": { "code": "accessDeniedError" } } ] }
The text was updated successfully, but these errors were encountered:
Dart の Future は成功か失敗であるため, Future として成功しているが, エラーも含むみたいな感じになりそう
Future<WithGraphQLError<Account>>
Sorry, something went wrong.
No branches or pull requests
一部のクエリが失敗しても全体としてエラーを返さないように
The text was updated successfully, but these errors were encountered: