include(_:)

    Includes the field in the projection

    Projection.swift:107
    mutating func include(_ field: FieldPath)

    Example:

    // explicitly include the field "name"
    var projection: Projection = [
     "name": .included,
    ]
    
    // also include the "birthDate" field
    projection.include("birthDate")

    Other members in extension

    Types

    Type members

    Instance members