feat: remove the layer filed for instance query (#81)

This commit is contained in:
Fine0830 2022-05-10 17:03:47 +08:00 committed by GitHub
parent 024a0fe44c
commit a0b57d0a5a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 29 additions and 32 deletions

View File

@ -41,7 +41,6 @@ export const Instances = {
label: name
language
instanceUUID
layer
attributes {
name
value
@ -83,7 +82,6 @@ export const getInstance = {
label: name
language
instanceUUID
layer
attributes {
name
value

View File

@ -26,7 +26,6 @@ export type Service = {
export type Instance = {
value: string;
label: string;
layer?: string;
language?: string;
instanceUUID?: string;
attributes?: { name: string; value: string }[];