2 weeks ago
Hello,
I can't find the entity name for "Application Service"
To get the list of all applications that use Java tech, I use this query
{
application(filter: {softwareTechnology_UsedTechnology_some:{name:"java"}} ){
name
}
}
How can I find the list of "Application Service" ?
Also I would like to have the list of "Microservice" that use a specified tech.
I can find the list of available entities using this query :
{
__schema {
types {
name
}
}
}
but nothing seems to refer to what I'm looking for.
Have you found the name of those entities ?
Thank you