Membrane React - v0.6.0
    Preparing search index...

    Function useAppDataSchemaInstances

    • Parameters

      Returns {
          appDataSchemaInstances: {
              id: string;
              key?: string;
              uuid?: string;
              description?: string;
              meta?: Record<string, any>;
              name: string;
              state?: CONFIGURATION_ERROR | SETUP_FAILED | READY;
              errors?: ErrorDataSchema[];
              revision?: string;
              createdAt?: string;
              updatedAt?: string;
              isDeactivated?: boolean;
              appId: string;
              userId: string;
              appDataSchemaId: string;
              appDataSchemaRevision: string;
              instanceKey?: string;
              schema?: any;
              error?: ErrorDataSchema;
              archivedAt?: string;
              user?: {
                  id: string;
                  name: string;
                  meta?: Record<string, any>;
                  internalId: string;
                  fields?: Record<string, any>;
                  credentials?: any;
                  lastActiveAt?: string;
                  isTest?: boolean;
                  isBillable?: boolean;
                  createdAt?: string;
                  archivedAt?: string;
              };
              appDataSchema?: {
                  id: string;
                  key?: string;
                  uuid?: string;
                  description?: string;
                  meta?: Record<string, any>;
                  name: string;
                  state?: CONFIGURATION_ERROR | SETUP_FAILED | READY;
                  errors?: ErrorDataSchema[];
                  createdAt?: string;
                  updatedAt?: string;
                  isDeactivated?: boolean;
                  schema: any;
                  code?: string;
                  archivedAt?: string;
                  revision?: string;
              };
          }[];
          items: {
              id: string;
              key?: string;
              uuid?: string;
              description?: string;
              meta?: Record<string, any>;
              name: string;
              state?: CONFIGURATION_ERROR | SETUP_FAILED | READY;
              errors?: ErrorDataSchema[];
              revision?: string;
              createdAt?: string;
              updatedAt?: string;
              isDeactivated?: boolean;
              appId: string;
              userId: string;
              appDataSchemaId: string;
              appDataSchemaRevision: string;
              instanceKey?: string;
              schema?: any;
              error?: ErrorDataSchema;
              archivedAt?: string;
              user?: {
                  id: string;
                  name: string;
                  meta?: Record<string, any>;
                  internalId: string;
                  fields?: Record<string, any>;
                  credentials?: any;
                  lastActiveAt?: string;
                  isTest?: boolean;
                  isBillable?: boolean;
                  createdAt?: string;
                  archivedAt?: string;
              };
              appDataSchema?: {
                  id: string;
                  key?: string;
                  uuid?: string;
                  description?: string;
                  meta?: Record<string, any>;
                  name: string;
                  state?: CONFIGURATION_ERROR | SETUP_FAILED | READY;
                  errors?: ErrorDataSchema[];
                  createdAt?: string;
                  updatedAt?: string;
                  isDeactivated?: boolean;
                  schema: any;
                  code?: string;
                  archivedAt?: string;
                  revision?: string;
              };
          }[];
          refresh: () => Promise<void>;
          refreshing: boolean;
          loadMore: () => Promise<void>;
          loadingMore: boolean;
          loading: boolean;
          error: any;
      }