KO
|
EN
gitlite — search
Search
#python
#javascript
#deep-learning
#mysql
#php
#python3
#kotlin
#game
#ios
#gpu
#cnn
#linux
pioneer
★ 43
Open GitHub ↗
GraphQL for Swift.
Download README (.md)
Explore Similar Repositories
FreqTrade_Work
:
No description available.
DPFM
:
Pytorch code for "DPFM: Deep Partial Functional Maps" - 3DV 2021 (Oral)
Region_Learner
:
The Pytorch implementation for "Video-Text Pre-training with Learned Regions"
GetBetter
:
Get Better static website
octane-testbench
:
⛽ Set of utilities to test Laravel applications powered by Octane.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
pioneer
?
Download (.md)
<p align="center"> <img src="./Documentation/public/pioneer-banner.png"/> </p> [](https://swiftpackageindex.com/d-exclaimation/pioneer) [](https://swiftpackageindex.com/d-exclaimation/pioneer) [](https://actions-badge.atrox.dev/d-exclaimation/pioneer/goto?ref=main) Pioneer is an open-source, [spec-compliant](https://github.com/graphql/graphql-http#servers) GraphQL server that's compatible with any GraphQL schema built with [GraphQLSwift/GraphQL](https://github.com/GraphQLSwift/GraphQL). ## Setup ```swift .package(url: "https://github.com/d-exclaimation/pioneer", from: "1.0.0") ``` ### Quick start ```swift 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 - [Documentation](https://pioneer.dexclaimation.com/docs) - [Getting started](https://pioneer.dexclaimation.com/docs/getting-started) - [API References](https://swiftpackageindex.com/d-exclaimation/pioneer/documentation) - [Example](https://github.com/d-exclaimation/pioneer-example) ## 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](https://github.com/apollographql/apollo-server), and it would not have been possible without the work put into [GraphQLSwift/GraphQL](https://github.com/GraphQLSwift/GraphQL).