Interface GraphQLOptions

Optional query modifier flags for lx.getAllFactSheets().

  • includeInvalidRelations — when true, includes relation edges that violate data model constraints (e.g. wrong Fact Sheet type on a constrained relation). Default: false.
  • excludeConstrainingRelations — relation names to exclude from constraining-relation logic; useful when querying across constraining boundaries.
  • trackingKey — optional analytics identifier for this query; has no effect on results.
  • getOnlyBaseAttributes — when true, restricts the response to BaseFactSheet fields only, ignoring type-specific attributes; useful for performance when type-specific data is not needed.
interface GraphQLOptions {
    excludeConstrainingRelations?: string[];
    getOnlyBaseAttributes?: boolean;
    includeInvalidRelations?: boolean;
    trackingKey?: string;
}

Properties

excludeConstrainingRelations?: string[]
getOnlyBaseAttributes?: boolean
includeInvalidRelations?: boolean
trackingKey?: string

Generated using TypeDoc