(
parsed: ParsedToolAddress,
)
| 3708 | }); |
| 3709 | |
| 3710 | const findToolRowsForConnection = ( |
| 3711 | parsed: ParsedToolAddress, |
| 3712 | ): Effect.Effect<readonly ToolInvocationRow[], StorageFailure> => |
| 3713 | core.findMany("tool", { |
| 3714 | where: toolRowsForConnectionWhere(parsed), |
| 3715 | orderBy: ["name", "asc"], |
| 3716 | limit: TOOL_SUGGESTION_LIMIT, |
| 3717 | select: TOOL_INVOCATION_COLUMNS, |
| 3718 | }); |
| 3719 | |
| 3720 | const execute = ( |
| 3721 | address: ToolAddress, |
no test coverage detected