Skip to main content

searchCertificates

Search certificates repository. The pagination can be either forward or backward. To enable forward pagination, two arguments are used: 'after' and 'first'. To enable backward pagination, two arguments are used: 'before' and 'last'. If arguments for both forward and backward pagination are supplied, forward pagination wil be used. If no arguments are supplied, it returns the first page of 10 certificates (i.e. defaults 'first' to 10). The result is sorted by fingerprints in ascending order.

  • after: returns the elements in the list that come after the specified cursor. Defaults to empty string, meaning that we return the first page of certificates, if 'first' value is supplied
  • first: non-negative integer, denoting the first 'n' number of records to return after the 'after' cursor value. Max value is 100
  • before: returns the elements in the list that come before the specified cursor. By default is the empty string, meaning that the results will be the last page, if 'last' value is supplied
  • last: non-negative integer, denoting the last 'n' number of records to return before the 'before' cursor value. Max value is 100
searchCertificates(
after: String
before: String
first: Int
last: Int
filter: SearchCertificateFilterInput
filterOn: CertificateSearchFilterInput
orderBy: [CertificateOrderInput!]
): CertificateConnection!

Arguments

searchCertificates.after ● String scalar

searchCertificates.before ● String scalar

searchCertificates.first ● Int scalar

searchCertificates.last ● Int scalar

searchCertificates.filter ● SearchCertificateFilterInput input

searchCertificates.filterOn ● CertificateSearchFilterInput input

searchCertificates.orderBy ● [CertificateOrderInput!] list input

Type

CertificateConnection object

A page of certificate results