@node-in-layers/mcp
    Preparing search index...

    Function isExecuteModelBulkInsert

    • Checks if the data is a bulk insert model data.

      Parameters

      • data: any

        The data to check.

      Returns data is Readonly<
          {
              args: Readonly<
                  {
                      items: readonly Readonly<{ [s: string]: JsonAble }>[];
                      modelType: string;
                  },
              > & Readonly<{ [s: string]: JsonAble }>;
              toolName: BulkInsert;
          },
      > & Readonly<
          {
              action: BulkInsert;
              domain: string;
              modelName: string;
              toolName: BulkInsert;
          },
      >

      True if the data is a bulk insert model data, false otherwise.