Module Values.QueryGenerationTableSource

Contains information about a table for the query engine to consider.

Sourcetype nonrec t = {
  1. name : QueryGenerationTableName.t;
    (*

    The name of the table for which the other fields in this object apply.

    *)
  2. description : DescriptionString.t option;
    (*

    A description of the table that helps the query engine understand the contents of the table.

    *)
  3. inclusion : IncludeExclude.t option;
    (*

    Specifies whether to include or exclude the table during query generation. If you specify EXCLUDE, the table will be ignored. If you specify INCLUDE, all other tables will be ignored.

    *)
  4. columns : QueryGenerationColumns.t option;
    (*

    An array of objects, each of which defines information about a column in the table.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?inclusion:??? -> ?columns:??? -> name:QueryGenerationTableName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of QueryGenerationColumnName.t ]) list ] list | `String of QueryGenerationTableName.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t