You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 20, 2023. It is now read-only.
Can you please provide the feature of getting all of the response values from the query type without giving each and every params every time. As it is time taking and required most of the time in api calls.
example:
query {
getService(id:"55666") { * }
}
And another feature is
-> add option of giving query param to not get the specific field and get the remaining fields of the query. like in MongoDB {id: 1, name: 1, __v: -1 }
example :
query {
getUser(id: "554645"){
password: -1
}
}
for getting the every fields of the user data by leaving the password value.
The text was updated successfully, but these errors were encountered:
Can you please provide the feature of getting all of the response values from the query type without giving each and every params every time. As it is time taking and required most of the time in api calls.
example:
And another feature is
-> add option of giving query param to not get the specific field and get the remaining fields of the query. like in MongoDB {id: 1, name: 1, __v: -1 }
example :
for getting the every fields of the user data by leaving the password value.
The text was updated successfully, but these errors were encountered: