Fetch available spot pricing for gpu types

I can query the available GPU types using
query GpuTypes {
gpuTypes {
id
displayName
memoryInGb
}
}
query GpuTypes {
gpuTypes {
id
displayName
memoryInGb
}
}
when I ask the AI assistent to give me the values so I can query the GPU costs, it says
query GpuTypes {
gpuTypes {
id
displayName
memoryInGb
communityCloud
lowestPrice {
minimumBidPrice
uninterruptablePrice
}
}
}
query GpuTypes {
gpuTypes {
id
displayName
memoryInGb
communityCloud
lowestPrice {
minimumBidPrice
uninterruptablePrice
}
}
}
but when I try this I get:
{
"errors": [
{
"message": "Something went wrong. Please try again later or contact support.",
"locations": [
{
"line": 6,
"column": 5
}
],
"path": [
"gpuTypes",
0,
"lowestPrice"
],
"extensions": {
"code": "INTERNAL_SERVER_ERROR"
}
},
...
{
"errors": [
{
"message": "Something went wrong. Please try again later or contact support.",
"locations": [
{
"line": 6,
"column": 5
}
],
"path": [
"gpuTypes",
0,
"lowestPrice"
],
"extensions": {
"code": "INTERNAL_SERVER_ERROR"
}
},
...
Solution:
ah, ok this seems to work: ```graphql query GpuTypes { gpuTypes {...
Jump to solution
1 Reply
Solution
Bersaelor
Bersaelor3w ago
ah, ok this seems to work:
query GpuTypes {
gpuTypes {
id
displayName
memoryInGb
communityCloud
communitySpotPrice
}
}
query GpuTypes {
gpuTypes {
id
displayName
memoryInGb
communityCloud
communitySpotPrice
}
}

Did you find this page helpful?