MCPcopy Index your code
hub / github.com/TanStack/db / constructor

Method constructor

packages/db/src/errors.ts:521–528  ·  view source on GitHub ↗
(alias: string, parentAliases: Array<string>)

Source from the content-addressed store, hash-verified

519 */
520export class DuplicateAliasInSubqueryError extends QueryCompilationError {
521 constructor(alias: string, parentAliases: Array<string>) {
522 super(
523 `Subquery uses alias "${alias}" which is already used in the parent query. ` +
524 `Each alias must be unique across parent and subquery contexts. ` +
525 `Parent query aliases: ${parentAliases.join(`, `)}. ` +
526 `Please rename "${alias}" in either the parent query or subquery to avoid conflicts.`,
527 )
528 }
529}
530
531export class UnsupportedFromTypeError extends QueryCompilationError {

Callers

nothing calls this directly

Calls 1

joinMethod · 0.45

Tested by

no test coverage detected