Loading
Technopedia API - Query multiple IDs

We are trying to develop our own GraphQL query that can provide lifecycle data for multiple IDs in one query.

 

Has anyone accomplished this by using the Technopedia API?

 

I don't see an option to specific a "where" statement clause based on the documentation.

 

Sample Hardware Model IDs:

 

26b3d449-95ca-1679-e063-0100007fe99c

0ab7ce23-4853-f61e-e063-0100007f3df0


  • Detlev Eufinger (Flexera Software)

    hey,

     

    please try this

     

    query {

      HardwareModel(

        id: [

          "26b3d449-95ca-1679-e063-0100007fe99c",

          "0ab7ce23-4853-f61e-e063-0100007f3df0"

        ]

      ) {

        id

        name            # or modelName, depending on schema

        hardwareLifecycle{

            obsoleteDate

        }

        hardwareProduct{

            manufacturer{

                name

            }

        }

      }

     

    }

    Expand Post
    Selected as Best
  • Detlev Eufinger (Flexera Software)

    hey,

     

    please try this

     

    query {

      HardwareModel(

        id: [

          "26b3d449-95ca-1679-e063-0100007fe99c",

          "0ab7ce23-4853-f61e-e063-0100007f3df0"

        ]

      ) {

        id

        name            # or modelName, depending on schema

        hardwareLifecycle{

            obsoleteDate

        }

        hardwareProduct{

            manufacturer{

                name

            }

        }

      }

     

    }

    Expand Post
    Selected as Best

Loading
Technopedia API - Query multiple IDs