arnavsaxena
How to increase the default number of results (30) in graphql?
query: "query FindManyPeople($filter: PersonFilterInput, $orderBy: [PersonOrderByInput], $lastCursor: String, $limit: Int) {
people(filter: $filter, orderBy: $orderBy, first: $limit, after: $lastCursor) {
edges {
node{
id
}
cursor
}
}
}"
operationName: "FindManyPeople"
variables: " {
"limit": 1000,
"lastCursor":"WyIwNWI2Mzk4NC05YWFhLTRkMDItOTc5Ny0zNzFlN2U3MWVjMDIiXQ=="
}"
10 replies
Error TS5042: Option 'project' cannot be mixed with source files on a command line
We are using macOS M2. We tried uninstalling all Postgres, all sets of things but still used to get graphql does not exist. We even tried to create a new user but gave the same error.
Eventually, we erased and formatted our macOS and it started to work.
Phew 😮💨
17 replies