Skip to content

jakubozga/graphQLTest

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

graphQLTest

Proof of concept using GraphQL with EntityFramework

Instalation

  • git clone <repository-url> this repository
  • Build solution and automactly install all required nuget packages
  • Modify connection string named "Default" in S360.GraphGL/Web.Config
  • In Package Manager Console run update-database with selected Default project as S360.GraphGL.Data

Running

{
   character
  {
    id
    name
    planet
    {
      
      name
    }

  }
  droid(id: 6)
  {
    id
    name
    episodes
    {
      title
    }
  }
  episode
  {
    id
    title
    characters
    {
      name
    }
  }
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published