Hi,
Â
I am searching for graphql query which retriver all factsheets with attributes data. As we are getting excel file from leanix workspace inventory. I want to retrive all data using graphql.Â
Â
Thank you in advance.Â
Hi,
Â
I am searching for graphql query which retriver all factsheets with attributes data. As we are getting excel file from leanix workspace inventory. I want to retrive all data using graphql.Â
Â
Thank you in advance.Â
Hi
query allFactSheetsQuery($filter: FilterInput!) {
 allFactSheets(filter: $filter) {
  totalCount
  pageInfo {
   hasNextPage
   hasPreviousPage
   startCursor
   endCursor
  }
  filterOptions {
   facets {
    facetKey
    facetType
    facetSubType
    total
    possibleOperators
    operator
    globalFacet
    results {
     name
     key
     count
     selected
    }
    dateFilter {
     from
     to
     type
     minDate
     maxDate
    }
    subscriptionFilter {
     type
     role {
      id
      name
     }
    }
    subFilter {
     facetFilters {
      facetKey
      operator
      keys
      dateFilter {
       from
       to
       type
      }
      subscriptionFilter {
       type
       role {
        id
        name
       }
      }
     }
     fullTextSearch
     ids
    }
    relationFieldsFilterOperator
    relationFieldsFilter {
     fieldName
     values {
      key
      selected
     }
    }
   }
  }
 }
}
{
 "filter": {
  "facetFilters": a
   {
    "facetKey": "FactSheetTypes",
    "operator": "OR",
    "keys": Â
     "Application"
    ]
   }
  ]
 }
}
Application.all()
or FactSheet.all() for all fact sheets.
All the GraphQL is built and sent under the hood, including authentication, paging, error handling etc.
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.