IMConversationQuery

public class IMConversationQuery : LCQuery

IM Conversation Query

Combine

  • Performs a logical AND operation on an array of one or more expressions of query.

    Throws

    LCError

    Declaration

    Swift

    public static func and(_ queries: [IMConversationQuery]) throws -> IMConversationQuery?

    Parameters

    queries

    An array of one or more expressions of query.

    Return Value

    An optional IMConversationQuery

  • Performs a logical AND operation on self and the query.

    Throws

    LCError

    Declaration

    Swift

    public func and(_ query: IMConversationQuery) throws -> IMConversationQuery?

    Parameters

    query

    The query.

    Return Value

    An optional IMConversationQuery

  • Performs a logical OR operation on an array of one or more expressions of query.

    Throws

    LCError

    Declaration

    Swift

    public static func or(_ queries: [IMConversationQuery]) throws -> IMConversationQuery?

    Parameters

    queries

    An array of one or more expressions of query.

    Return Value

    An optional IMConversationQuery

  • Performs a logical OR operation on self and the query.

    Throws

    LCError

    Declaration

    Swift

    public func or(_ query: IMConversationQuery) throws -> IMConversationQuery?

    Parameters

    query

    The query.

    Return Value

    An optional IMConversationQuery

Where

Find

Unavailable