We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90d3b9f commit 0538b3bCopy full SHA for 0538b3b
README.md
@@ -66,12 +66,16 @@ Returning a model object, having `Model: Codable`
66
cassandraClient.query("select * from table ...").map { (result: [Model]) in
67
...
68
}
69
+
70
+ let result: [Model] = try await cassandraClient.query("select * from table ...")
71
```
72
73
```swift
74
session.query("select * from table ...").map { (result: [Model]) in
75
76
77
78
+ let result: [Model] = try await session.query("select * from table ...")
79
80
81
Or using free-form transformations on the row
0 commit comments