Package: GraphQLite.jl

Simple, fast, limited-scope implementation of GraphQL in Julia. Converts GraphQL input into a composition of arrays and Dicts.

cd(@__DIR__)
import Pkg
Pkg.activate(".")
using GraphQLite
using JSON3
include("schema.jl")
include("types.jl")
include("db.jl")
include("resolvers.jl")
include("input_resolvers.jl")