We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79e55c3 commit 3571d7dCopy full SHA for 3571d7d
packages/runtime/src/objectql-plugin.ts
@@ -1,11 +1,6 @@
1
import { ObjectQL } from '@objectstack/objectql';
2
import { RuntimePlugin, RuntimeContext } from '@objectstack/types';
3
4
-/**
5
- * Symbol to identify ObjectQL plugins
6
- */
7
-export const OBJECTQL_PLUGIN_MARKER = Symbol('objectql-plugin');
8
-
9
/**
10
* ObjectQL Engine Plugin
11
*
@@ -21,9 +16,6 @@ export class ObjectQLPlugin implements RuntimePlugin {
21
16
name = 'com.objectstack.engine.objectql';
22
17
type = 'objectql' as const;
23
18
24
- // Mark this as an ObjectQL plugin for reliable detection
25
- readonly [OBJECTQL_PLUGIN_MARKER] = true;
26
27
19
private ql: ObjectQL;
28
20
29
0 commit comments