I don’t think I’m building my query the right way....
# orm-help
d
I don’t think I’m building my query the right way. I’ve got Prisma connecting to Postgres and I can do a successful query on localhost:4466. But I have this running in ApolloServer 2 and when I run that on localhost:4000 and do this query:
Copy code
query { 
	users {
    id
    first_name
    last_name
    username
  }
}
I get this failure:
Copy code
"message": "Field \"users\" argument \"first_name\" of type \"String!\" is required but not provided.",
There is a valid data row in the database.