F# implementation of Facebook GraphQL query language specification.
Type the following commands to install the template for creating web applications:
From GitHub:
dotnet new -i "FSharp.Data.GraphQL::2.0.0-ci-*" --nuget-source "https://nuget.pkg.github.com/fsprojects/index.json"
From NuGet:
dotnet new -i "FSharp.Data.GraphQL::2.0.0"
openFSharp.Data.GraphQLopenFSharp.Data.GraphQL.TypestypePerson={ FirstName:string
LastName:string }// Define GraphQL typeletPersonType= Define.Object(
name ="Person",
fields =[// Property resolver will be auto-generated
Define.AutoField("firstName", StringType)// Asynchronous explicit member resolver
Define.AsyncField("lastName", StringType, resolve =fun context person ->async{return person.LastName })])// Include person as a root query of a schemaletschema= Schema(query = PersonType)// Create an Exector for the schemaletexecutor= Executor(schema)// Retrieve person dataletjohnSnow={ FirstName ="John"; LastName ="Snow"}letreply= executor.AsyncExecute(Parser.parse "{ firstName, lastName }", johnSnow)|> Async.RunSynchronously
// #> { data: { "firstName", "John", "lastName", "Snow" } }It's type safe. Things like invalid fields or invalid return types will be checked at compile time.
See the AspNetCore/README.md
Go to the GraphiQL sample directory. In order to run it, build and run the Star Wars API sample project with Debug settings - this will create a Giraffe server compatible with the GraphQL spec, running on port 8086. Then what you need is to run node.js graphiql frontend. To do so, run npm i to get all dependencies, and then run npm run serve | npm run dev - this will start a webpack server running on http://localhost:8090/ . Visit this link, and GraphiQL editor should appear. You may try it by applying following query:
{
hero(id:"1000") {
id,
name,
appearsIn,
homePlanet,
friends {
...onHuman {
name
}
...onDroid {
name
}
}
}
}The stream directive now has additional features, like batching (buffering) by interval and/or batch size. To make it work, a custom stream directive must be placed inside the SchemaConfig.Directives list, this custom directive containing two optional arguments called interval and preferredBatchSize:
letcustomStreamDirective=letargs=[|
Define.Input("interval",
Nullable IntType,
defaultValue = Some 2000,
description ="An optional argument used to buffer stream results. ")
Define.Input("preferredBatchSize",
Nullable IntType,
defaultValue = None,
description ="An optional argument used to buffer stream results. ")|]{ StreamDirective with Args = args }letschemaConfig={ SchemaConfig.Default with
Directives =[
IncludeDirective
SkipDirective
DeferDirective
customStreamDirective
LiveDirective ]}This boilerplate code can be easily reduced with a built-in implementation:
letstreamOptions={ Interval = Some 2000; PreferredBatchSize = None }letschemaConfig=
SchemaConfig.DefaultWithBufferedStream(streamOptions)The live directive is now supported by the server component. To support live queries, each field of each type of the schema needs to be configured as a live field. This is done by using ILiveFieldSubscription and ILiveQuerySubscriptionProvider, which can be configured in the SchemaConfig:
typeILiveFieldSubscription=interfaceabstractmemberIdentity :obj->objabstractmemberTypeName :stringabstractmemberFieldName :stringendandILiveFieldSubscription<'Object,'Identity>=interfaceinherit ILiveFieldSubscription
abstractmemberIdentity :'Object->'IdentityendandILiveFieldSubscriptionProvider=interfaceabstractmemberHasSubscribers :string->string->boolabstractmemberIsRegistered :string->string->boolabstractmemberAsyncRegister :ILiveFieldSubscription->Async<unit>abstractmemberTryFind :string->string->ILiveFieldSubscriptionoptionabstractmemberAdd :obj->string->string->IObservable<obj>abstractmemberAsyncPublish<'T>:string->string->'T->Async<unit>endTo set a field as a live field, call the Register extension method. Each subscription needs to know an object identity, so it must be configured on the Identity function of the ILiveFieldSubscription. Also, the name of the Type and the field inside the ObjectDef needs to be passed along:
letschemaConfig= SchemaConfig.Default
letschema= Schema(root, config = schemaConfig)letsubscription={ Identity =fun(x: Human)-> x.Id
TypeName ="Hero"
FieldName ="name"}
schemaConfig.LiveFieldSubscriptionProvider.Register subscriptionWith that, the field name of the hero is now able to go live, being updated to clients whenever it is queried with the live directive. To push updates to subscribers, just call Publish method, passing along the type name, the field name and the updated object:
letupdatedHero={ hero with Name ="Han Solo - Test"}
schemaConfig.LiveFieldSubscriptionProvider.Publish "Hero""name" updatedHeroOur client library now has a completely redesigned type provider. To start using it, you will first need access to the introspection schema for the server you are trying to connect. This can be done with the provider in one of two ways:
- Provide the URL to the desired GraphQL server (without any custom HTTP headers required). The provider will access the server, send an Introspection Query, and use the schema to provide the types used to make queries.
typeMyProvider= GraphQLProvider<"http://some.graphqlserver.development.org">- Provide an introspection json file to be used by the provider. Beware though that the introspection json should have all fields required by the provider. You can get the correct fields by running our standard introspection query on the desired server and saving it into a file on the same path as the project using the provider:
typeMyProvider= GraphQLProvider<"swapi_schema.json">From now on, you can start running queries and mutations:
letoperation=
MyProvider.Operation<"""query q { hero (id: "1001") { name appearsIn homePlanet friends { ... on Human { name homePlanet } ... on Droid { name primaryFunction } } } }""">()// This is a instance of GraphQLProviderRuntimeContext.// You can use it to provider a runtime URL to access your server,// and optionally additional HTTP headers (auth headers, for example).// If you use a local introspection file to parse the schema,// The runtime context is mandatory.letruntimeContext={ ServerUrl ="http://some.graphqlserver.production.org"
CustomHttpHeaders = None }letresult= operation.Run(runtimeContext)// Query result objects have pretty-printing and structural equality.
printfn "Data: %A\n" result.Data
printfn "Errors: %A\n" result.Errors
printfn "Custom data: %A\n" result.CustomData
// Response from the server:// Data: Some// {Hero = Some// {Name = Some "Darth Vader";// AppearsIn = [|NewHope; Empire; Jedi|];// HomePlanet = Some "Tatooine";// Friends = [|Some {Name = Some "Wilhuff Tarkin";// HomePlanet = <null>;}|];};}// Errors: <null>// Custom data: map [("documentId", 1221427401)]For more information about how to use the client provider, see the examples folder.
You can create and use middleware on top of the Executor<'Root> object.
The query execution process through the use of the Executor involves three phases:
Schema compile phase: this phase happens when the
Executor<'Root>class is instantiated. In this phase, the Schema map of types is used to build a field execute map, which contains all field definitions alongside their field resolution functions. This map is used later on in the planning and execution phases to retrieve the values of the queried fields of the schema.Operation planning phase: this phase happens before running a query that has no execution plan. This phase is responsible for analyzing the AST document generated by the query, and building an ExecutionPlan to execute it.
Operation execution phase: this phase is the phase that executes the query. It needs an execution plan, so, it commonly happens after the operation planning phase.
All the phases wrap the needed data to do the phase job inside a context object. They are expressed internally by functions:
letinternalcompileSchema(ctx :SchemaCompileContext):unit =// ...letinternalplanOperation(ctx:PlanningContext):ExecutionPlan =// ...letinternalexecuteOperation(ctx :ExecutionContext):AsyncVal<GQLResponse>=// ...That way, in the compile schema phase, the schema is modified and execution maps are generated inside the SchemaCompileContext object. During the operation planning phase, values of the PlanningContext object are used to generate an execution plan, and finally, this plan is passed alongside other values in the ExecutionContext object to the operation execution phase, which finally uses them to execute the query and generate a GQLResponse.
With that being said, a middleware can be used to intercept each phase and customize them as necessary. Each middleware must be implemented as a function with a specific signature, and wrapped inside an IExecutorMiddleware interface:
typeSchemaCompileMiddleware=
SchemaCompileContext ->(SchemaCompileContext -> unit)-> unit
typeOperationPlanningMiddleware=
PlanningContext ->(PlanningContext -> ExecutionPlan)-> ExecutionPlan
typeOperationExecutionMiddleware=
ExecutionContext ->(ExecutionContext -> AsyncVal<GQLResponse>)-> AsyncVal<GQLResponse>typeIExecutorMiddleware=abstractCompileSchema :SchemaCompileMiddlewareoptionabstractPlanOperation :OperationPlanningMiddlewareoptionabstractExecuteOperationAsync :OperationExecutionMiddlewareoptionOptionally, for ease of implementation, concrete class to derive from can be used, receiving only the optional sub-middleware functions in the constructor:
typeExecutorMiddleware(?compile,?plan,?execute)=interface IExecutorMiddleware withmember_.CompileSchema= compile
member_.PlanOperation= plan
member_.ExecuteOperationAsync= executeEach of the middleware functions act like an intercept function, with two parameters: the context of the phase, the function of the next middleware (or the actual phase itself, which is the last to run), and the return value. Those functions can be passed as an argument to the constructor of the Executor<'Root> object:
letmiddleware=[ ExecutorMiddleware(compileFn, planningFn, executionFn)]letexecutor= Executor(schema, middleware)A simple example of a practical middleware can be one that measures the time needed to plan a query. The results of which get returned as part of the Metadata of the planning context. The Metadata object is a Map<string, obj> implementation that acts like a bag of information to be passed through each phase, until it is returned inside the GQLResponse object. You can use it to thread custom information through middleware:
letplanningMiddleware(ctx :PlanningContext)(next :PlanningContext ->ExecutionPlan)=letwatch= Stopwatch()
watch.Start()letresult= next ctx
watch.Stop()letmetadata= result.Metadata.Add("planningTime", watch.ElapsedMilliseconds){ result with Metadata = metadata }There are some built-in middleware inside FSharp.Data.GraphQL.Server.Middleware package:
This middleware can be used to place weights on fields of the schema. Those weighted fields can now be used to protect the server from complex queries that could otherwise be used in DDOS attacks.
When defining a field, we use the extension method WithQueryWeight to place a weight on it:
letresolveFn(h :Human)=
h.Friends |> List.map getCharacter |> List.toSeq
letfield=
Define.Field("friends", ListOf (Nullable CharacterType),
resolve = resolveFn).WithQueryWeight(0.5)Then we define the threshold middleware for the Executor. If we execute a query that ask for "friends of friends" in a recursive way, the executor will only accept nesting them 4 times before the query exceeds the weight threshold of 2.0:
letmiddleware=[ Define.QueryWeightMiddleware(2.0)]This middleware can be used to automatically generate a filter for list fields inside an object of the schema. This filter can be passed as an argument for the field on the query, and recovered in the ResolveFieldContext argument of the resolve function of the field.
For example, we can create a middleware for filtering list fields of an Human object, that are of the type Character option:
letmiddleware=[ Define.ObjectListFilterMiddleware<Human, Character option>()]The filter argument is an object that is mapped through a JSON definition inside an filter argument on the field. A simple example would be filtering friends of a hero that have their names starting with the letter A:
queryTestQuery {
hero(id:"1000") {
idnameappearsInhomePlanetfriends (filter : { name_starts_with: "A" }) {
idname
}
}
}For string filters, lowercase suffixes are case-insensitive (name_starts_with, name_sw, name_contains, name_equals, name_eq), while capitalized suffixes are case-sensitive (name_Starts_With, name_SW, name_Contains, name_Equals, name_EQ). contains/Contains do not have shorthand aliases.
Also you can apply not operator like this:
queryTestQuery {
hero(id:"1000") {
idnameappearsInhomePlanetfriends (filter : { not : { name_starts_with: "A" } }) {
idname
}
}
}And combine filters with and and or operators like this:
queryTestQuery {
hero(id:"1000") {
idnameappearsInhomePlanetfriends (filter : { or : [{ name_starts_with: "A"}, { name_starts_with: "B" }]}) {
idname
}
}
}This filter is mapped by the middleware inside an ObjectListFilter definition:
typeFieldFilter<'Val>={ FieldName :string
Value :'Val }typeObjectListFilter=| And ofObjectListFilter*ObjectListFilter| Or ofObjectListFilter*ObjectListFilter| Not ofObjectListFilter| Equals ofFilter:FieldFilter<System.IComparable>*Comparer:System.Collections.IComparer| GreaterThan ofFieldFilter<System.IComparable>| GreaterThanOrEqual ofFieldFilter<System.IComparable>| LessThan ofFieldFilter<System.IComparable>| LessThanOrEqual ofFieldFilter<System.IComparable>| In ofFieldFilter<objlist>| StartsWith ofFilter:FieldFilter<string>*Comparer:System.StringComparer| EndsWith ofFilter:FieldFilter<string>*Comparer:System.StringComparer| Contains ofFilter:FieldFilter<System.IComparable>*Comparer:System.Collections.IComparer| OfTypes ofSystem.Typelist| FilterField ofFieldFilter<ObjectListFilter>And the value recovered by the filter in the query is usable in the ResolveFieldContext of the resolve function of the field. To easily access it, you can use the extension method Filter, which returns an ObjectListFilter voption (it does not have a value if the object doesn't implement a list with the middleware generic definition, or if the user didn't provide a filter input).
Define.Field("friends", ListOf (Nullable CharacterType),
resolve =fun ctx (d: Droid)->
ctx.Filter |> printfn "Droid friends filter: %A"
d.Friends |> List.map getCharacter |> List.toSeq)By retrieving this filter from the field resolution context, it is possible to use client code to customize the query to run against a database, for example, and extend your GraphQL API features.
This middleware can be used to quickly allow your schema fields to be able to be queried with a live directive, assuming that all of them have an identity property name that can be discovered by a function, IdentityNameResolver:
/// A function that resolves an identity name for a schema object, based on a object definition of it.typeIdentityNameResolver= ObjectDef -> stringFor example, if all of our schema objects have an identity field named Id, we could use our middleware like this:
letschema= Schema(query = queryType)letmiddleware=[ Define.LiveQueryMiddleware(fun _ ->"Id")]letexecutor= Executor(schema, middleware)The IdentityNameResolver is optional, though. If no resolver function is provided, this default implementation of is used. Also, notifications to subscribers must be done via Publish of ILiveFieldSubscriptionProvider, like explained above.
You can use extension methods provided by the FSharp.Data.GraphQL.Shared package to help building your own middleware. When making a middleware, often you will need to modify schema definitions to add features to the schema defined by the user code. The ObjectListFilter middleware is an example, where all fields that implements lists of a certain type needs to be modified, by accepting an argument called filter.
As field definitions are immutable by default, generating copies of them with improved features can be hard work sometimes. This is where the extension methods can help: for example, if you need to add an argument to an already defined field inside the schema compile phase, you can use the method WithArgs of the FieldDef<'Val> interface:
letfield:FieldDef<'Val>=// Search for field inside ISchemaletarg:Define.Input("id",StringType)letfieldWithArg= field.WithArgs([ arg ])To see the complete list of extensions used to augment definitions, you can take a look at the TypeSystemExtensions module contained in the FSharp.Data.GraphQL.Shared package.