Skip to content

Commit

Permalink
Update utils.js
Browse files Browse the repository at this point in the history
  • Loading branch information
khpeet committed Jan 17, 2024
1 parent 481c056 commit e8bab73
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions nerdlets/command-center-v2-nerdlet/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module.exports = {
return `
{
actor {
entitySearch(query: "alertable IS TRUE AND (domain = 'AIOPS' AND type = 'ISSUE' and tags.source = 'newrelic' AND tags.accountId = '${account}')") {
entitySearch(query: "domain = 'AIOPS' AND type = 'ISSUE' and tags.source = 'newrelic' AND tags.accountId = '${account}'") {
results {
entities {
name
Expand All @@ -26,7 +26,7 @@ module.exports = {
return `
{
actor {
entitySearch(query: "alertable IS TRUE AND (domain = 'AIOPS' AND type = 'ISSUE' and tags.source = 'newrelic' AND tags.accountId = '${account}')") {
entitySearch(query: "domain = 'AIOPS' AND type = 'ISSUE' and tags.source = 'newrelic' AND tags.accountId = '${account}'") {
results(cursor: "${cursor}") {
entities {
name
Expand Down Expand Up @@ -96,7 +96,7 @@ module.exports = {
return `
{
actor {
entitySearch(query: "alertable IS TRUE AND (domain = 'AIOPS' AND type = 'ISSUE' and tags.source = 'newrelic' AND tags.accountId = '${account}')") {
entitySearch(query: "domain = 'AIOPS' AND type = 'ISSUE' and tags.source = 'newrelic' AND tags.accountId = '${account}'") {
results {
entities {
name
Expand All @@ -116,7 +116,7 @@ module.exports = {
return `
{
actor {
entitySearch(query: "alertable IS TRUE AND (domain = 'AIOPS' AND type = 'ISSUE' and tags.source = 'newrelic' AND tags.accountId = '${account}')") {
entitySearch(query: "domain = 'AIOPS' AND type = 'ISSUE' and tags.source = 'newrelic' AND tags.accountId = '${account}'") {
results(cursor: "${cursor}") {
entities {
name
Expand Down

0 comments on commit e8bab73

Please sign in to comment.