GET http://10.105.36.130:8080/healthz

GraphQL requests

5 HTTP queries on GraphQL endpoint(s)

Refresh with latest query
404 December 12, 2025 10:52 85668a
# Time Info
200 December 12, 2025 03:59 schema: default 0696c2
# Time Info
1 201 ms
query StaticContents__STATIC_CONTENT_SERVICE_GRAPHQL_ENDPOINT__0(...) {
staticContents(...)
}
500 December 12, 2025 01:04 da028f
# Time Info
200 December 11, 2025 12:42 schema: default 6184b3
# Time Info
1 6 ms
At line 1, column 58
Cannot create an instance of "Saz\StaticContent\Content\Application\GetStaticContentQuery\GetStaticContentInDto" from serialized data because its constructor requires the following parameters to be present : "$id".
query Probes__STATIC_CONTENT_SERVICE_GRAPHQL_ENDPOINT__2(...) {
a_staticContent: staticContent(...)
}
404 December 11, 2025 10:52 b26607
# Time Info

Schema: default

type Query {
  """
  Required for
                      [Apollo Federation](https://www.apollographql.com/docs/federation/federation-spec/#query_entities)
                      to be used for internal use only.
  """
  _entities(representations: [_Any!]!): [_Entity]!

  """
  Required for
                      [Apollo Federation](https://www.apollographql.com/docs/federation/federation-spec/#query_service)
                      to be used for internal use only.
  """
  _service: _Service!

  staticContent(id: ID): StaticContent!
  staticContents(pagination: PaginationInputN, filters: StaticContentsFiltersInputN): StaticContents
}

"""
Required for
            [Apollo Federation](https://www.apollographql.com/docs/federation/federation-spec/#scalar-_any)
            to be used for internal use only.
"""
scalar _Any

"""
Required for
            [Apollo Federation](https://www.apollographql.com/docs/federation/federation-spec/#union-_entity)
            to be used for internal use only.
"""
union _Entity = StaticContent

type StaticContent {
  "Unique internal identifier."
  id: ID!

  "name of the Static Content"
  name: String!

  "category of the Static Content"
  category: String!

  "Alias of the Static Content"
  alias: String!

  "Status of the Static Content"
  status: String!

  "Order of the static Content"
  position: Int

  "HTML Content for desktop of the Static Content"
  desktopContent: String

  "HTML Content for mobile of the Static Content"
  mobileContent: String
}

type _Service {
  sdl: String
}

input PaginationInputN {
  page: Int
  limit: Int
  sorts: [SortInputN]
}

input SortInputN {
  field: String!
  asc: Boolean!
}

input StaticContentsFiltersInputN {
  id: FilterTextMultiple
  name: FilterTextMultiple
  category: FilterTextMultiple
  status: FilterTextMultiple
  alias: FilterTextMultiple
  createdAt: FilterDateTime
  position: FilterNumber
}

input FilterTextMultiple {
  op: FilterComparatorTextMultiple!
  value: [String]
}

enum FilterComparatorTextMultiple {
  IN
}

input FilterDateTime {
  op: FilterComparatorDateTime!
  value: DateTime
}

enum FilterComparatorDateTime {
  EQUAL
  NOT_EQUAL
  GREATER_THAN
  GREATER_THAN_OR_EQUAL
  LESS_THAN
  LESS_THAN_OR_EQUAL
  IS_NULL
  IS_NOT_NULL
}

"Format meets [ISO 8601](https:\/\/tools.ietf.org\/html\/rfc3339#section-5.6)."
scalar DateTime

input FilterNumber {
  op: FilterComparatorNumber!
  value: Float
}

enum FilterComparatorNumber {
  EQUAL
  NOT_EQUAL
  GREATER_THAN
  GREATER_THAN_OR_EQUAL
  LESS_THAN
  LESS_THAN_OR_EQUAL
  IS_NULL
  IS_NOT_NULL
}

"List of Contents."
type StaticContents {
  "Pagination information."
  pagination: PaginationData

  "Collection of results."
  results: [StaticContent!]!
}

"Pagination data"
type PaginationData {
  "Total number of elements."
  count: Int!

  "Total number of pages."
  pages: Int!

  "Next page number."
  next: Int

  "Previous page number."
  prev: Int
}

type Mutation {
  "Create a new Static Content."
  createStaticContent(input: CreateStaticContentInput!): StaticContent!

  "Update Static Content."
  updateStaticContent(id: ID!, input: UpdateStaticContentInput!): StaticContent!
}

input CreateStaticContentInput {
  "name of the Static Content"
  name: String!

  "category of the Static Content"
  category: String!

  "Alias of the Static Content"
  alias: String!

  "Status of the Static Content"
  status: String!

  "Order of the static Content"
  position: Int

  "HTML Content for desktop of the Static Content"
  desktopContent: Upload

  "HTML Content for mobile of the Static Content"
  mobileContent: Upload
}

scalar Upload

input UpdateStaticContentInput {
  "Name of the content"
  name: String

  "Alias of the user"
  alias: String

  "Status of the Static Content"
  status: String

  "Order of the static Content"
  position: Int

  "HTML Content for desktop of the Static Content"
  desktopContent: Upload

  "HTML Content for mobile of the Static Content"
  mobileContent: Upload
}