What's New

v1.4.0

2023-10-22T07:52:01Z

What's Changed

New Contributors

Full Changelog: 1.3.1...1.4.0

Build Status

Pioneer is an open-source, spec-compliant GraphQL server that's compatible with any GraphQL schema built with GraphQLSwift/GraphQL.

Setup

.package(url: "https://github.com/d-exclaimation/pioneer", from: "1.0.0")

Quick start

import Graphiti
import Pioneer

struct Resolver { ... }

let schema = try Schema<Resolver, Void> { ... }

let server = Pioneer(
    schema: schema,
    resolver: .init()
)

try server.standaloneServer(
    port: 4000,
    host: "127.0.0.1"
)

Usage/Examples

Feedback

If you have any feedback, feel free open an issue or discuss it in the discussion tab.

Attribution

This project is heavily inspired by Apollo Server, and it would not have been possible without the work put into GraphQLSwift/GraphQL.

Description

  • Swift Tools 5.5.2
View More Packages from this Author

Dependencies

Last updated: Tue Apr 02 2024 08:50:50 GMT-0900 (Hawaii-Aleutian Daylight Time)