RawField

public struct RawField : Field

An arbitrary field represented by a String.

  • A String containg the field.

    Declaration

    Swift

    public let field: String
  • The alias of the field.

    Declaration

    Swift

    public var alias: String?
  • Initialize an instance of RawField.

    Declaration

    Swift

    public init(_ field: String)

    Parameters

    field

    A String containing the field.

  • Build the field using QueryBuilder.

    Declaration

    Swift

    public func build(queryBuilder: QueryBuilder) -> String

    Parameters

    queryBuilder

    The QueryBuilder to use.

    Return Value

    A String representation of the field.