C#에서 GraphQL을 사용하고 싶습니다.
하는 것은 간단합니다. Schema를 정의하고 Query와 Mutation을 작성하면 GraphQL API의 완성입니다.
C#에서 GraphQL을 시험하는 샘플 코드가 있었으므로 그것을 참고로 비망록입니다.
참고 링크
여러가지 조사한 결과 도착한 링크들.
GraphQL .NET
샘플 코드
샘플 데이터
GraphQL 철저 입문 ─ REST와의 비교, API·프런트 양쪽의 실장으로부터 배운다
우선 움직여 보자
소스 코드를 복제하고 이동합시다.
# サンプルコードをクローンします
git clone https://github.com/graphql-dotnet/examples.git
# 使用するプロジェクトへ移動
cd examples\src\AspNetCore
# スクリプトを実行(中身はdotnet CLIのコマンドを実行してるだけ)
./run.sh
완료되면 http://localhost:3000/ui/playground 로 이동합니다.
위와 같은 화면이 표시될까 생각하기 때문에 이것으로 GraphQL을 시험하는 환경이 갖추어졌습니다.
다음 명령으로 샘플 코드를 테스트할 수 있습니다.
Mutation 실행
mutation {
createHuman(human:{ name: "hoge_001", homePlanet: "hogehogeplanet"}) {
name
homePlanet
}
}
쿼리 실행
query {
human(id:"1"){
name
}
}
Schema
스키마 타입
Schema는 Query와 Mutation을 정의합니다.
public class StarWarsSchema : Schema
{
public StarWarsSchema(IServiceProvider provider)
: base(provider)
{
Query = provider.GetRequiredService<StarWarsQuery>();
Mutation = provider.GetRequiredService<StarWarsMutation>();
}
}
또한 Query와 Mutation에서 사용하는 클래스는 다음과 같습니다.
다음 클래스의 속성은 Query 및 Mutaition 필드 이름에 해당합니다.
public abstract class StarWarsCharacter
{
public string Id { get; set; }
public string Name { get; set; }
public string[] Friends { get; set; }
public int[] AppearsIn { get; set; }
}
public class Human : StarWarsCharacter
{
public string HomePlanet { get; set; }
}
public class Droid : StarWarsCharacter
{
public string PrimaryFunction { get; set; }
}
Query
Query는 데이터를 검색하는 처리를 작성합니다.
public class StarWarsQuery : ObjectGraphType<object>
{
public StarWarsQuery(StarWarsData data)
{
// クエリあることを設定する
Name = "Query";
// heroというクエリを定義 ↓LINQが書ける
Field<CharacterInterface>("hero", resolve: context => data.GetDroidByIdAsync("3"));
}
}
Mutation
쫓아 씁니다.
Reference
이 문제에 관하여(C#에서 GraphQL을 사용하고 싶습니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/debonn/items/cb5da4414951d12cee06
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
public class StarWarsSchema : Schema
{
public StarWarsSchema(IServiceProvider provider)
: base(provider)
{
Query = provider.GetRequiredService<StarWarsQuery>();
Mutation = provider.GetRequiredService<StarWarsMutation>();
}
}
public abstract class StarWarsCharacter
{
public string Id { get; set; }
public string Name { get; set; }
public string[] Friends { get; set; }
public int[] AppearsIn { get; set; }
}
public class Human : StarWarsCharacter
{
public string HomePlanet { get; set; }
}
public class Droid : StarWarsCharacter
{
public string PrimaryFunction { get; set; }
}
public class StarWarsQuery : ObjectGraphType<object>
{
public StarWarsQuery(StarWarsData data)
{
// クエリあることを設定する
Name = "Query";
// heroというクエリを定義 ↓LINQが書ける
Field<CharacterInterface>("hero", resolve: context => data.GetDroidByIdAsync("3"));
}
}
Reference
이 문제에 관하여(C#에서 GraphQL을 사용하고 싶습니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/debonn/items/cb5da4414951d12cee06텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)