Custom Scalar in Graphql-java

后端 未结 2 976
感动是毒
感动是毒 2020-12-11 06:42

We are planning use Graphql as backend server in our application. We choose Graphql-Java to develop our POC. We came across a stituation to create our own scalartype to han

2条回答
  •  醉话见心
    2020-12-11 07:29

    To get a general idea how to make a scalar, just take a look into the existing ones and do something similar.

    graphql-java also has a separate project for extra scalars: graphql-java-extended-scalars. And there you can find the object scalar (a.k.a. JSON scalar), that can be used for dynamic structures, like Maps.

    Register it via:

    RuntimeWiring.newRuntimeWiring().scalar(ExtendedScalars.Object)
    

提交回复
热议问题