MCPcopy Create free account
hub / github.com/mikro-orm/mikro-orm / startCursor

Method startCursor

packages/core/src/utils/Cursor.ts:94–100  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

92 }
93
94 get startCursor(): string | null {
95 if (this.items.length === 0) {
96 return null;
97 }
98
99 return this.from(this.items[0]);
100 }
101
102 get endCursor(): string | null {
103 if (this.items.length === 0) {

Callers

nothing calls this directly

Calls 1

fromMethod · 0.95

Tested by

no test coverage detected