Skip to content

elenigen/graphql-spqr-samples

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

52 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GraphQL-SPQR Spring Boot Samples

Build Status Join the chat at https://gitter.im/leangen/graphql-spqr

Simplistic Spring Boot application for demoing GraphQl SPQR lib's capabilities. This is mostly used by us for doing live demo's in our talks, not as documentation.

Package with maven, run the jar, play around.

Out of the box it runs on port 7777

Graphiql tool is mapped to root (e.g. http://localhost:7777/)

API is exposed on /graphql

Example queries can be found in javadoc for query methods

For an elaborate introspection query you might want to use:

query IntrospectionQuery {
    __schema {
      queryType { name }
      mutationType { name }
      subscriptionType { name }
      types {
        ...FullType
      }
      directives {
        name
        description
        locations
        args {
          ...InputValue
        }
      }
    }
  }
  fragment FullType on __Type {
    kind
    name
    description
    fields(includeDeprecated: true) {
      name
      description
      args {
        ...InputValue
      }
      type {
        ...TypeRef
      }
      isDeprecated
      deprecationReason
    }
    inputFields {
      ...InputValue
    }
    interfaces {
      ...TypeRef
    }
    enumValues(includeDeprecated: true) {
      name
      description
      isDeprecated
      deprecationReason
    }
    possibleTypes {
      ...TypeRef
    }
  }
  fragment InputValue on __InputValue {
    name
    description
    type { ...TypeRef }
    defaultValue
  }
  fragment TypeRef on __Type {
    kind
    name
    ofType {
      kind
      name
      ofType {
        kind
        name
        ofType {
          kind
          name
          ofType {
            kind
            name
            ofType {
              kind
              name
              ofType {
                kind
                name
                ofType {
                  kind
                  name
                }
              }
            }
          }
        }
      }
    }
  }

About

Minimal demo app for graphql-spqr

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 95.4%
  • CSS 2.3%
  • Java 2.0%
  • HTML 0.3%