From 749e7a887fc64b2f219eb2e5c756a32b280861f6 Mon Sep 17 00:00:00 2001 From: Mathias Lykkegaard Lorenzen Date: Sat, 13 Jan 2024 17:17:31 +0100 Subject: [PATCH] fix: don't include values in query --- source/emit.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/emit.ts b/source/emit.ts index 0cfd7f7..40516fd 100644 --- a/source/emit.ts +++ b/source/emit.ts @@ -258,7 +258,7 @@ export async function emitToString( async function getCustomAttributes(session: Session) { const customAttributes = await session.query( - "select default, label, values, key, project_id, entity_type, is_hierarchical, object_type.name from CustomAttributeConfiguration order by sort" + "select default, label, key, project_id, entity_type, is_hierarchical, object_type.name from CustomAttributeConfiguration order by sort" ); return customAttributes.data; }