Skip to content

Commit 9484703

Browse files
committed
Update constants.py
1 parent a5e9dd9 commit 9484703

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

jupiterone/constants.py

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,23 @@
185185
}
186186
"""
187187

188+
GET_ENTITY_RAW_DATA = """
189+
query GetEntityRawData ($entityId: String!, $source: String!,
190+
) {
191+
entityRawDataLegacy(entityId: $entityId, , source: $source) {
192+
entityId
193+
payload {
194+
195+
... on RawDataJSONEntityLegacy {
196+
contentType
197+
name
198+
data
199+
}
200+
}
201+
}
202+
}
203+
"""
204+
188205
CREATE_SMARTCLASS = """
189206
mutation CreateSmartClass($input: CreateSmartClassInput!) {
190207
createSmartClass(input: $input) {

0 commit comments

Comments
 (0)