You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'Geographic/geometric columns managed by PostGIS. Supports spatial queries (distance, containment, intersection) via the Unified Search API PostGIS adapter.',
223
+
fields: geospatial,
224
+
});
225
+
}
226
+
227
+
if(embedding.length>0){
228
+
groups.push({
229
+
category: 'embedding',
230
+
label: 'pgvector embedding fields',
231
+
description:
232
+
'High-dimensional vector columns for semantic similarity search. Query via the Unified Search API pgvector adapter using cosine, L2, or inner-product distance.',
233
+
fields: embedding,
234
+
});
235
+
}
236
+
237
+
if(search.length>0){
238
+
groups.push({
239
+
category: 'search',
240
+
label: 'Unified Search API fields',
241
+
description:
242
+
'Fields provided by the Unified Search plugin. Includes full-text search (tsvector/BM25), trigram similarity scores, and the combined searchScore. Computed fields are read-only and cannot be set in create/update operations.',
243
+
fields: search,
244
+
});
245
+
}
246
+
247
+
returngroups;
248
+
}
249
+
250
+
/**
251
+
* Build markdown lines describing special fields for README-style docs.
252
+
* Returns empty array when there are no special fields.
0 commit comments