Programming Concepts — GraphQL
GraphQL is a query language for APIs that allows clients to request only the data they need, reducing over-fetching.
query {
user(id: 1) {
name
email
}
}
GraphQL is a query language for APIs that allows clients to request only the data they need, reducing over-fetching.
query {
user(id: 1) {
name
email
}
}