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) {