QueryKit, a simple type-safe Core Data query language.
pod 'QueryKit'A QuerySet represents a collection of objects from your Core Data Store. It can have zero, one or many filters. Filters narrow down the query results based on the given parameters.
QuerySet(context, "Person")NOTE: It’s recommend to implement a type type-safe queryset method on your model.
Person.queryset(context)You can filter a QuerySet using the filter and exclude methods, which
accept a predicate and return a new QuerySet.
queryset.filter(NSPredicate(format: "name == %@", "Kyle"))
queryset.exclude(NSPredicate(format: "age > 21"))NOTE: You can define type-safe methods on your models, or use the mogenerator template to generate these.
queryset.filter(Person.attributes.name == "Kyle")
queryset.exclude(Person.attributes.age > 21)The result of refining a QuerySet is itself a QuerySet, so it’s possible to chain refinements together. For example:
queryset.filter(Person.attributes.name == "Kyle")
.exclude(Person.attributes.age > 21)
.filter(Person.attributes.isEmployed)Each time you refine a QuerySet, you get a brand-new QuerySet that is in no way bound to the previous QuerySet. Each refinement creates a separate and distinct QuerySet that can be stored, used and reused.
A QuerySet is lazy, creating a QuerySet doesn’t involve querying Core Data. QueryKit won’t actually execute the query until the QuerySet is evaluated.
Using slicing, you can limit your QuerySet to a certain number of results.
Person.queryset(context)[0..<10]NOTE: Remember, QuerySet’s are lazily evaluated. Slicing doesn’t evaluate the query.
You can order a queryset's results by using the orderBy method which accepts
a collection of sort descriptors:
queryset.orderBy(NSSortDescriptor(key: "name", ascending: true))
queryset.orderBy(Person.name.ascending)
queryset.orderBy([Person.name.ascending, Person.age.descending])You can use slicing to limit a queryset to a range. For example, to get the first 5 items:
queryset[0..5]A QuerySet is utterable, and it executes the query when you iterate over it. For example:
for person in queryset {
println("Hello \(person.name).")
}You can also convert the QuerySet to an Array:
queryset.array()var kyle = Person.queryset(context).filter(Person.name == "Kyle").firstvar kyle = Person.queryset(context).filter(Person.name == "Kyle").lastvar orta = queryset[3]queryset.count()This method immediately deletes the objects in your queryset and returns a count and an error if the operation failed.
queryset.delete()The Attribute is a generic structure for creating predicates in a type-safe manner.
let name = Attribute<String>("name")
let age = Attribute<Int>("age")
name == "Kyle"
name << ["Kyle", "Katie"]
age == 27
age >= 25
age << (22...30)The following types of comparisons are supported using Attribute:
| Comparison | Meaning |
|---|---|
| == | x equals y |
| != | x is not equal to y |
| < | x is less than y |
| <= | x is less than or equal to y |
| > | x is more than y |
| >= | x is more than or equal to y |
| ~= | x is like y |
| ~= | x is like y |
| << | x IN y, where y is an array |
| << | x BETWEEN y, where y is a range |
We've also extended NSPredicate to add support for the !, && and || operators for joining predicates together.
NSPredicate(format:"name == Kyle") || NSPredicate(format:"name == Katie")
NSPredicate(format:"age >= 21") && !NSPredicate(format:"name == Kyle")Person.name == "Kyle" || Person.name == "Katie"
Person.age >= 21 || Person.name != "Kyle"QueryKit is released under the BSD license. See LICENSE.