feat(custom-domain): enable UI for custom domain (#10062)
This commit is contained in:
@ -1,22 +1,16 @@
|
||||
import { gql } from '@apollo/client';
|
||||
|
||||
export const GET_HOSTNAME_DETAILS = gql`
|
||||
query GetHostnameDetails {
|
||||
getHostnameDetails {
|
||||
export const GET_CUSTOM_HOSTNAME_DETAILS = gql`
|
||||
query GetCustomHostnameDetails {
|
||||
getCustomHostnameDetails {
|
||||
hostname
|
||||
ownershipVerifications {
|
||||
... on CustomHostnameOwnershipVerificationTxt {
|
||||
type
|
||||
name
|
||||
value
|
||||
}
|
||||
... on CustomHostnameOwnershipVerificationHttp {
|
||||
type
|
||||
body
|
||||
url
|
||||
}
|
||||
records {
|
||||
type
|
||||
key
|
||||
value
|
||||
validationType
|
||||
status
|
||||
}
|
||||
status
|
||||
}
|
||||
}
|
||||
`;
|
||||
|
||||
Reference in New Issue
Block a user