This is a very simple graphql server that is going to be used in my CocoaHeads SP talk about, you know, GraphQL on iOS.
It exposes a property list query which provides property data, including interested contacts. It's also possible to like the properties using a mutation.
git clone [email protected]:marinofelipe/graphql-properties-server.git
open the folder
cd ~/graphql-properties-server
run the server
node server.js
By default the server runs at localhost's 4000 port
Open http://localhost:4000/ and play with it πΉ on the playground
The playground also contains information about the schema and the docs.
You should also see the iOS project that consumes this server using Apollo-iOS π