From 9484703834cf9f5fa705a95172aa5995322241c4 Mon Sep 17 00:00:00 2001 From: SeaBlooms Date: Wed, 23 Oct 2024 13:40:54 -0600 Subject: [PATCH] Update constants.py --- jupiterone/constants.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/jupiterone/constants.py b/jupiterone/constants.py index 110419a..da068ab 100644 --- a/jupiterone/constants.py +++ b/jupiterone/constants.py @@ -185,6 +185,23 @@ } """ +GET_ENTITY_RAW_DATA = """ + query GetEntityRawData ($entityId: String!, $source: String!, + ) { + entityRawDataLegacy(entityId: $entityId, , source: $source) { + entityId + payload { + + ... on RawDataJSONEntityLegacy { + contentType + name + data + } + } + } + } +""" + CREATE_SMARTCLASS = """ mutation CreateSmartClass($input: CreateSmartClassInput!) { createSmartClass(input: $input) {