FaunaDB Swift Driver
A Swift driver for FaunaDB
Supported Platforms
- iOS 9.0+ | OSX 10.10+ | tvOS 9.0+ | watchOS 2.0+
- Xcode 8
- Swift 3
Documentation
Check out the Swift-specific reference documentation.
You can find more information in the FaunaDB documentation and in our example project.
Using the Driver
Installing
CocoaPods:
pod 'FaunaDB', '~> 2.0.0'
Carthage:
github 'fauna/faunadb-swift'
SwiftPM:
.Package(url: "https://github.com/fauna/faunadb-swift.git", Version(2, 0, 0))
Basic Usage
import FaunaDB
struct Post {
let title: String
let body: String?
}
extension Post: FaunaDB.Encodable {
func encode() -> Expr {
return Obj(
"title" => title,
"body" => body
)
}
}
extension Post: FaunaDB.Decodable {
init?(value: Value) throws {
try self.init(
title: value.get("title") ?? "Untitled",
body: value.get("body")
)
}
}
let client = FaunaDB.Client(secret: "your-key-secret-here")
// Creating a new post
try! client.query(
Create(
at: Class("posts")
Obj("data" => Post("My swift app", nil))
)
).await(timeout: .now() + 5)
// Retrieve a saved post
let getPost = client.query(Get(Ref(class: Class("posts"), id: "42")))
let post: Post = try! getPost.map { dbEntry in dbEntry.get("data") }
.await(timeout: .now() + 5)
For more examples, check our online documentation and our example project.
Contributing
GitHub pull requests are very welcome.
Driver Development
You can compile and run the test with the following command:
FAUNA_ROOT_KEY=your-keys-secret-here swift test
LICENSE
Copyright 2018 Fauna, Inc.
Licensed under the Mozilla Public License, Version 2.0 (the "License"); you may not use this software except in compliance with the License. You may obtain a copy of the License at
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.