Skip to content

Exploring GraphQL server to build property management backend.

License

Notifications You must be signed in to change notification settings

prosdev/pm-service-graphql

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

About project

GraphQL Server

  • Set up
  • Goal

Getting started

Clone the project, and once inside the folder, run:

    npm start

Supported Mutations

Find out more about supported operations in the service by exploring the graphiql interface. Vist the graphiql endpt: http://localhost:4000/graphiql

Or see below:

I. Create new properties

mutation CreateProperty{
  addProperty(
    name: "Creston Hill Manor", 
    description: "Charming Creston-Kenilworth Bungalow on .11 Acre Lot. Spacious living room with fireplace, hardwoods, rustic brick surround. Nook with built-ins, coved archways. Modern, open kitchen with granite counters, pantry. Dining room with wood floors."
    tags: ["personal"]
    thumbImage: ["https://placeimg.com/350/200/arch"]
    mainImage: ["https://placeimg.com/1080/500/arch"]
    location: {
      streetAddress: "4423 SE 30th Ave, Portland, OR 97202"
        coordinates: [-122.634882, 45.491029]
    }
  ) {
    name
  }
}

Support Queries

Again, find out more about support operations in the service by cloning the project and exploring the graphiql endpt. But, here's a summary:

I. Get Properties

query getProperties {
  properties {
    name
    tags
    slug
    thumbImage
    mainImage
  }
}

Inside the properties object, specify the fields desired in the response. Fields available are:

id
name
description
location
slug
thumbImage
mainImage
tags

Query response will return data in the following format:

{
  "data": {
    "properties": [
      {
        "name": "Elm's Hollow",
        "tags": [
          "personal"
        ],
        "slug": "elms-hollow",
        "thumbImage": [
          "https://placeimg.com/350/200/arch"
        ],
        "mainImage": [
          "https://placeimg.com/1080/500/arch"
        ]
      },
      {
        "name": "Colonial Split",
        "tags": [
          "rental"
        ],
        "slug": "colonial-split",
        "thumbImage": [
          "https://placeimg.com/350/200/arch"
        ],
        "mainImage": [
          "https://placeimg.com/1080/500/arch"
        ]
      },
      {
        "name": "Creston Hill Manor",
        "tags": [
          "personal"
        ],
        "slug": "creston-hill-manor",
        "thumbImage": [
          "https://placeimg.com/350/200/nature/grayscale/1"
        ],
        "mainImage": [
          "https://placeimg.com/1080/500/arch"
        ]
      }
    ]
  }
}

About

Exploring GraphQL server to build property management backend.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published