field
GraphQLのリクエストの基本単位
フィールドといいつつ、メソッドのように引数をとることもできる
code:graphql
{
repository(owner: "rails", name: "rails") { // これはrepository field
id // これは Reopsitory type の id field
nameWithOwner // これは Repository type の nameWithOwner field
}
}
mutation
もGraphQL的にはフィールドの一種
https://graphql.org/learn/schema/#
a.k.a.
#フィールド
see also:
type
]