In GraphQL-land
POST https://api.somedomain.com/gql
There’s only ONE endpoint
query{
members(first: 1000, skip: 0) {
id
fname
lname
email
interests
active
joined
}
}
{
"data": {
"members": [
{
"id": 17,
"fname": "Ricardo",
"lname": "Alcocer",
"email": "
[email protected]",
"interests": "lifehacking,music",
"active": "1",
"joined": "2021-07-14 12:51:57"
},
{
"id": 18,
"fname": "Vic",
REQUEST RESPONSE
15