TableIntrospectionEdge
The table introspection edge object.
Learn more about pagination in GraphQL.
fields
cursor non-null String
The edge's cursor.
node non-null TableIntrospection
The edge's node.
The table introspection object.
When setting up a Data Source, Propel may need to introspect tables in order to determine what tables and columns are available to create Data Pools from. The table introspection represents the lifecycle of this operation (whether it's in-progress, succeeded, or failed) and the resulting tables and columns. These will be captured as table and column objects, respectively.
node.dataSource non-null DataSource
The Data Source the table introspection was performed for.
node.status non-null TableIntrospectionStatus
The status of the table introspection.
The status of a table introspection.
NOT_STARTED
The table introspection has not started.
STARTED
The table introspection has started.
SUCCEEDED
The table introspection succeeded.
FAILED
The table introspection failed.
node.createdAt non-null DateTime
The table introspection's creation date and time in UTC.
node.createdBy non-null String
The table introspection's creator. It can be either a User ID, an Application ID, or "system" if it was created by Propel.
node.modifiedAt non-null DateTime
The table introspection's last modification date and time in UTC.
node.modifiedBy non-null String
The table introspection's last modifier. It can be either a User ID, an Application ID, or "system" if it was modified by Propel.
node.numTables nullable Int
The number of tables introspected.
node.tables nullable TableConnection
The tables introspected.