Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions request/addTag.query.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
mutation AddTag($input: AddTagInput!) {
addTags(input: $input) {
tags {
tagType
tagId
name
isOxTag
displayName
createdBy
}
}
}
1 change: 1 addition & 0 deletions request/addTag.variables.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"input":{"tagsInput":[{"displayName":"neatsun","name":"neatsun","tagType":"simple"}]}}
13 changes: 13 additions & 0 deletions request/getAllTags.query.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
query GetAllTags {
getAllTags {
tags {
tagId
name
displayName
tagType
createdBy
isOxTag
}
}
}

1 change: 1 addition & 0 deletions request/getAllTags.variables.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
344 changes: 172 additions & 172 deletions request/getAppInfo.query.json
Original file line number Diff line number Diff line change
@@ -1,173 +1,173 @@
query GetSingleApplicationInfo($getSingleApplicationInput: SingleApplicationInput) {
getSingleApplicationInfo(getSingleApplicationInput: $getSingleApplicationInput) {
appId
issues
appName
branch
branchesCount
businessPriority
codeChanges
fakeApp
link
commitCount
createdAt
creator
daysSinceLastCodeChange
daysSinceRepoCreation
deployedProd
filesCount
forksCount
hasDownloads
pipelineScans
irrelevantReasons
isMonoRepoChild
monoRepoParent
monorepoChildrenCount
sbomCount
monorepoChildrenAppIds
languages {
language
languagePercentage
}
lastCodeChange
new
overrideRelevance
overridePriority
publicVisibility
pullCount
pushCount
relevant
risk
scanId
scannedAt
secInfrastructure {
label
clientCoverage
oxCoverage
noCoverage
notApplicable
}
securityPosture
size
tagsCount
type
updated
userCount
version
violationCount
watchersCount
yamlsCount
scoreHistory {
appId
appName
score
date
new
updated
scanId
}
applicationFlows {
artifacts {
type
system
subType
hash
size
date
name
linkName
location {
runBy
foundBy
foundIn
link
}
}
cloudDeployments {
type
subType
name
hash
hashType
location {
runBy
foundBy
foundIn
link
}
}
cicdInfo {
type
system
latestDate
lastMonthJobCount
location {
runBy
foundBy
foundIn
link
}
}
orchestrators {
type
system
hash
size
date
name
location {
runBy
foundBy
foundIn
link
}
}
kubernetes {
type
system
hash
subType
size
date
location {
runBy
foundBy
foundIn
link
}
}
repository {
type
system
date
location {
runBy
foundBy
foundIn
link
}
}
}
isSbomPresent
appOwners {
name
email
roles
}
pipeline {
jobId
jobTriggeredAt
scanResult
issuesCount
jobTriggeredBy
jobUrl
}
tags {
tagId
name
displayName
createdBy
isOxTag
}
}
query GetSingleApplicationInfo($getSingleApplicationInput: SingleApplicationInput) {
getSingleApplicationInfo(getSingleApplicationInput: $getSingleApplicationInput) {
appId
issues
appName
branch
branchesCount
businessPriority
codeChanges
fakeApp
link
commitCount
createdAt
creator
daysSinceLastCodeChange
daysSinceRepoCreation
deployedProd
filesCount
forksCount
hasDownloads
pipelineScans
irrelevantReasons
isMonoRepoChild
monoRepoParent
monorepoChildrenCount
sbomCount
monorepoChildrenAppIds
languages {
language
languagePercentage
}
lastCodeChange
new
overrideRelevance
overridePriority
publicVisibility
pullCount
pushCount
relevant
risk
scanId
scannedAt
secInfrastructure {
label
clientCoverage
oxCoverage
noCoverage
notApplicable
}
securityPosture
size
tagsCount
type
updated
userCount
version
violationCount
watchersCount
yamlsCount
scoreHistory {
appId
appName
score
date
new
updated
scanId
}
applicationFlows {
artifacts {
type
system
subType
hash
size
date
name
linkName
location {
runBy
foundBy
foundIn
link
}
}
cloudDeployments {
type
subType
name
hash
hashType
location {
runBy
foundBy
foundIn
link
}
}
cicdInfo {
type
system
latestDate
lastMonthJobCount
location {
runBy
foundBy
foundIn
link
}
}
orchestrators {
type
system
hash
size
date
name
location {
runBy
foundBy
foundIn
link
}
}
kubernetes {
type
system
hash
subType
size
date
location {
runBy
foundBy
foundIn
link
}
}
repository {
type
system
date
location {
runBy
foundBy
foundIn
link
}
}
}
isSbomPresent
appOwners {
name
email
roles
}
pipeline {
jobId
jobTriggeredAt
scanResult
issuesCount
jobTriggeredBy
jobUrl
}
tags {
tagId
name
displayName
createdBy
isOxTag
}
}
}
8 changes: 4 additions & 4 deletions request/getAppInfo.variables.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"getSingleApplicationInput": {
"applicationId": "584352228"
}
{
"getSingleApplicationInput": {
"applicationId": "584352228"
}
}
Loading