쿼리 레퍼런스
전체 86개 쿼리를 도메인별로 정리했습니다. 인자, 반환 타입, 필수 여부를 인라인으로 확인할 수 있습니다.
숙소 관리 (3)
readAccommodation
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: Accommodation
| 인자 | 타입 | 필수 |
|---|---|---|
id | ULID! | ✓ |
readAccommodationForIntegration
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: AccommodationForIntegration
| 인자 | 타입 | 필수 |
|---|---|---|
id | ULID! | ✓ |
readAccommodations
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: [Accommodation!]!목록
| 인자 | 타입 | 필수 |
|---|---|---|
userId | ULID | — |
감사 로그 (2)
readAudits
@roleGuard(role: ADMIN, access: READ): Only the user with the role of 'ADMIN' and the access permission of 'READ' can access this object (field).
반환: AuditConnection! · 페이지네이션: cursor
| 인자 | 타입 | 필수 |
|---|---|---|
first | Int | — |
last | Int | — |
after | String | — |
before | String | — |
skip | Int | — |
take | Int | — |
filters | AuditFilters | — |
orders | AuditOrders | — |
accommodationId | ULID | — |
readRecentInviteUserAuditsByActorId
@roleGuard(role: MANAGER, access: READ): Only the user with the role of 'MANAGER' and the access permission of 'READ' can access this object (field).
반환: [Audit!]!목록
| 인자 | 타입 | 필수 |
|---|---|---|
actorId | ULID! | ✓ |
time | Int! | ✓ |
빌링 및 결제 (6)
previewSubscriptionBilling
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: SubscriptionBillingPreview!
| 인자 | 타입 | 필수 |
|---|---|---|
billingQuotas | [BillingQuotaInput!]! | ✓ |
paymentCurrency | BillingCurrency! | ✓ |
accommodationId | ULID | — |
readBilling
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: Billing!
| 인자 | 타입 | 필수 |
|---|---|---|
type | BillingType | — |
accommodationId | ULID | — |
readBillingDiscountAllocations
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: [BillingDiscountAllocation!]!목록
| 인자 | 타입 | 필수 |
|---|---|---|
accommodationId | ULID | — |
readBillingDiscounts
@roleGuard(role: ROOT, access: READ): Only the user with the role of 'ROOT' and the access permission of 'READ' can access this object (field).
반환: [BillingDiscount!]!목록
| 인자 | 타입 | 필수 |
|---|---|---|
isActive | Boolean | — |
readBillingPaymentMethods
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: [BillingPaymentMethod!]!목록
| 인자 | 타입 | 필수 |
|---|---|---|
accommodationId | ULID | — |
readBillingTransactions
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: BillingTransactionConnection! · 페이지네이션: cursor
| 인자 | 타입 | 필수 |
|---|---|---|
billingId | ULID! | ✓ |
first | Int | — |
last | Int | — |
after | String | — |
before | String | — |
skip | Int | — |
take | Int | — |
filters | BillingTransactionFilters | — |
orders | BillingTransactionOrders | — |
예약 관리 (13)
checkBookingExists
@roleGuard(role: ROOT, access: READ): Only the user with the role of 'ROOT' and the access permission of 'READ' can access this object (field).
반환: [BookingExistence!]!목록
| 인자 | 타입 | 필수 |
|---|---|---|
identifiers | [String!]! | ✓ |
accommodationId | ULID! | ✓ |
countBookings
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: Int!
| 인자 | 타입 | 필수 |
|---|---|---|
accommodationId | ULID! | ✓ |
stayType | StayType! | ✓ |
startDate | DateTime! | ✓ |
endDate | DateTime! | ✓ |
countBookingsForIntegration
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: Int!
| 인자 | 타입 | 필수 |
|---|---|---|
accommodationId | ULID! | ✓ |
stayType | StayType! | ✓ |
startDate | DateTime! | ✓ |
endDate | DateTime! | ✓ |
readBooking
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: Booking
| 인자 | 타입 | 필수 |
|---|---|---|
id | ULID! | ✓ |
readBookingForIntegration
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: BookingForIntegration
| 인자 | 타입 | 필수 |
|---|---|---|
id | ULID! | ✓ |
readBookingUpdateHistories
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: [BookingUpdateHistory!]!목록
| 인자 | 타입 | 필수 |
|---|---|---|
bookingId | ULID! | ✓ |
readBookingUpdateHistoriesForIntegration
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: [BookingUpdateHistoryForIntegration!]!목록
| 인자 | 타입 | 필수 |
|---|---|---|
bookingId | ULID! | ✓ |
readBookings
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: BookingConnection! · 페이지네이션: cursor
| 인자 | 타입 | 필수 |
|---|---|---|
first | Int | — |
last | Int | — |
after | String | — |
before | String | — |
skip | Int | — |
take | Int | — |
filters | BookingFilters | — |
orders | [BookingOrders!] | — |
accommodationId | ULID | — |
readBookingsByIdentifiers
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: [Booking!]!목록
| 인자 | 타입 | 필수 |
|---|---|---|
identifiers | [String!]! | ✓ |
accommodationId | ULID! | ✓ |
readBookingsByIdentifiersForIntegration
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: [BookingForIntegration!]!목록
| 인자 | 타입 | 필수 |
|---|---|---|
identifiers | [String!]! | ✓ |
accommodationId | ULID! | ✓ |
readBookingsByPartialIdentifier
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: [Booking!]!목록
| 인자 | 타입 | 필수 |
|---|---|---|
identifier | String! | ✓ |
accommodationId | ULID! | ✓ |
readBookingsByPartialIdentifierForIntegration
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: [BookingForIntegration!]!목록
| 인자 | 타입 | 필수 |
|---|---|---|
identifier | String! | ✓ |
accommodationId | ULID! | ✓ |
readBookingsForIntegration
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: BookingConnectionForIntegration!
| 인자 | 타입 | 필수 |
|---|---|---|
first | Int | — |
last | Int | — |
after | String | — |
before | String | — |
skip | Int | — |
take | Int | — |
filters | BookingFilters | — |
orders | [BookingOrders!] | — |
accommodationId | ULID | — |
채널 연동 (12)
readAvailableChannelProperties
@roleGuard(role: ROOT, access: READ): Only the user with the role of 'ROOT' and the access permission of 'READ' can access this object (field).
반환: [ChannelProperty!]!목록
readChannelAccount
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: ChannelAccount!
| 인자 | 타입 | 필수 |
|---|---|---|
id | ULID! | ✓ |
aggregateProperties | Boolean | — |
readChannelAccounts
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: [ChannelAccount!]!목록
| 인자 | 타입 | 필수 |
|---|---|---|
accommodationId | ULID | — |
aggregateProperties | Boolean | — |
readChannelPackage
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: ChannelPackage!
| 인자 | 타입 | 필수 |
|---|---|---|
id | ULID! | ✓ |
readChannelPackageByUnique
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: ChannelPackage!
| 인자 | 타입 | 필수 |
|---|---|---|
identifier | String! | ✓ |
stayType | StayType! | ✓ |
channelPropertyId | ULID! | ✓ |
accommodationId | ULID! | ✓ |
readChannelPackageForIntegration
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: ChannelPackageForIntegration!
| 인자 | 타입 | 필수 |
|---|---|---|
id | ULID! | ✓ |
readChannelPackages
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: [ChannelPackage!]!목록
| 인자 | 타입 | 필수 |
|---|---|---|
packageId | ULID | — |
channelPropertyId | ULID | — |
accommodationId | ULID | — |
includeIntegration | Boolean | — |
isHidden | Boolean | — |
readChannelProperties
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: [ChannelProperty!]!목록
| 인자 | 타입 | 필수 |
|---|---|---|
channelAccountId | ULID | — |
accommodationId | ULID | — |
readChannelPropertiesByChannelKeyAndCredential
@roleGuard(role: ROOT, access: READ): Only the user with the role of 'ROOT' and the access permission of 'READ' can access this object (field).
반환: [ChannelProperty!]!목록
| 인자 | 타입 | 필수 |
|---|---|---|
channelKey | String! | ✓ |
credential | JSON! | ✓ |
readChannels
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: [Channel!]!목록
readConnectedChannelAccounts
@roleGuard(role: ROOT, access: READ): Only the user with the role of 'ROOT' and the access permission of 'READ' can access this object (field).
반환: [ChannelAccount!]!목록
| 인자 | 타입 | 필수 |
|---|---|---|
aggregateProperties | Boolean | — |
readPendingChannelAccounts
@roleGuard(role: ROOT, access: READ): Only the user with the role of 'ROOT' and the access permission of 'READ' can access this object (field).
반환: [ChannelAccount!]!목록
| 인자 | 타입 | 필수 |
|---|---|---|
aggregateProperties | Boolean | — |
통화 관리 (2)
readCurrencies
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: [CurrencySet!]!목록
| 인자 | 타입 | 필수 |
|---|---|---|
timezone | TimeZone | — |
readCurrencyExchange
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: CurrencyExchange!
| 인자 | 타입 | 필수 |
|---|---|---|
currency | Currency! | ✓ |
포함 항목 (2)
readInclusions
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: [Inclusion!]!목록
| 인자 | 타입 | 필수 |
|---|---|---|
accommodationId | ULID | — |
tags | [ULID!] | — |
readInclusionsForIntegration
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: [InclusionForIntegration!]!목록
| 인자 | 타입 | 필수 |
|---|---|---|
accommodationId | ULID | — |
tags | [ULID!] | — |
외부 연동 (5)
readIntegration
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: Integration!
| 인자 | 타입 | 필수 |
|---|---|---|
id | ULID! | ✓ |
readIntegrationAdapterForIntegration
@roleGuard(role: ADMIN, access: READ): Only the user with the role of 'ADMIN' and the access permission of 'READ' can access this object (field).
반환: IntegrationAdapter!
| 인자 | 타입 | 필수 |
|---|---|---|
id | ULID! | ✓ |
readIntegrationAdapters
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: [IntegrationAdapter!]!목록
| 인자 | 타입 | 필수 |
|---|---|---|
accommodationId | ULID | — |
readIntegrationByReference
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: Integration!
| 인자 | 타입 | 필수 |
|---|---|---|
aggregate | IntegrationAggregate! | ✓ |
key | String! | ✓ |
readIntegrations
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: [Integration!]!목록
| 인자 | 타입 | 필수 |
|---|---|---|
aggregate | IntegrationAggregate | — |
재고 관리 (5)
readCalculatedInventories
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: [CalculatedInventory!]!목록
| 인자 | 타입 | 필수 |
|---|---|---|
startDate | LocalDate! | ✓ |
endDate | LocalDate | — |
daysOfWeek | [DayOfWeek!] | — |
count | Int | — |
includeChannelPackage | Boolean | — |
accommodationId | ULID | — |
stayType | StayType | — |
readCalculatedInventoriesForIntegration
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: [CalculatedInventory!]!목록
| 인자 | 타입 | 필수 |
|---|---|---|
startDate | LocalDate! | ✓ |
endDate | LocalDate | — |
daysOfWeek | [DayOfWeek!] | — |
count | Int | — |
includeChannelPackage | Boolean | — |
accommodationId | ULID | — |
stayType | StayType | — |
readInventories
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: [Inventory!]!목록
| 인자 | 타입 | 필수 |
|---|---|---|
startDate | LocalDate! | ✓ |
endDate | LocalDate! | ✓ |
accommodationId | ULID | — |
readInventory
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: Inventory!
| 인자 | 타입 | 필수 |
|---|---|---|
startDate | LocalDate! | ✓ |
endDate | LocalDate! | ✓ |
id | ULID! | ✓ |
accommodationId | ULID | — |
readInventoryByRoomTypeId
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: Inventory!
| 인자 | 타입 | 필수 |
|---|---|---|
startDate | LocalDate! | ✓ |
endDate | LocalDate! | ✓ |
roomTypeId | ULID! | ✓ |
accommodationId | ULID | — |
알림 (3)
readNotificationAlarmHistories
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: NotificationAlarmHistoryConnection! · 페이지네이션: cursor
| 인자 | 타입 | 필수 |
|---|---|---|
notificationAlarmId | ULID! | ✓ |
first | Int | — |
last | Int | — |
after | String | — |
before | String | — |
skip | Int | — |
take | Int | — |
filters | NotificationAlarmHistoryFilters | — |
orders | NotificationAlarmHistoryOrders | — |
readNotificationAlarms
@roleGuard(role: MANAGER, access: READ): Only the user with the role of 'MANAGER' and the access permission of 'READ' can access this object (field).
반환: [NotificationAlarm!]!목록
| 인자 | 타입 | 필수 |
|---|---|---|
accommodationId | ULID | — |
readNotifications
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: NotificationConnection! · 페이지네이션: cursor
| 인자 | 타입 | 필수 |
|---|---|---|
first | Int | — |
last | Int | — |
after | String | — |
before | String | — |
skip | Int | — |
take | Int | — |
filters | NotificationFilters | — |
orders | NotificationOrders | — |
accommodationId | ULID | — |
패키지 관리 (5)
readPackage
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: Package!
| 인자 | 타입 | 필수 |
|---|---|---|
id | ULID! | ✓ |
readPackageForIntegration
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: PackageForIntegration!
| 인자 | 타입 | 필수 |
|---|---|---|
id | ULID! | ✓ |
readPackageTimeTables
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: [PackageTimeTable!]!목록
| 인자 | 타입 | 필수 |
|---|---|---|
accommodationId | ULID | — |
readPackages
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: [Package!]!목록
| 인자 | 타입 | 필수 |
|---|---|---|
accommodationId | ULID | — |
includeIntegration | Boolean | — |
readPackagesForIntegration
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: [PackageForIntegration!]!목록
| 인자 | 타입 | 필수 |
|---|---|---|
accommodationId | ULID | — |
기간 설정 (1)
readPeriods
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: [Period!]!목록
| 인자 | 타입 | 필수 |
|---|---|---|
accommodationId | ULID | — |
정책 관리 (2)
readPolicies
@roleGuard(role: MANAGER, access: READ): Only the user with the role of 'MANAGER' and the access permission of 'READ' can access this object (field).
반환: [Policy!]!목록
| 인자 | 타입 | 필수 |
|---|---|---|
accommodationId | ULID | — |
readPolicy
@roleGuard(role: MANAGER, access: READ): Only the user with the role of 'MANAGER' and the access permission of 'READ' can access this object (field).
반환: Policy
| 인자 | 타입 | 필수 |
|---|---|---|
id | ULID! | ✓ |
요금 관리 (8)
readCalculatedRates
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: [CalculatedRate!]!목록
| 인자 | 타입 | 필수 |
|---|---|---|
accommodationId | ULID | — |
startDate | LocalDate! | ✓ |
endDate | LocalDate | — |
daysOfWeek | [DayOfWeek!] | — |
count | Int | — |
includeChannelPackage | Boolean | — |
stayType | StayType | — |
readCalculatedRatesForIntegration
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: [CalculatedRate!]!목록
| 인자 | 타입 | 필수 |
|---|---|---|
accommodationId | ULID | — |
startDate | LocalDate! | ✓ |
endDate | LocalDate | — |
daysOfWeek | [DayOfWeek!] | — |
count | Int | — |
includeChannelPackage | Boolean | — |
stayType | StayType | — |
readRateChannelPackageAdjustment
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: RateChannelPackageAdjustment!
| 인자 | 타입 | 필수 |
|---|---|---|
id | ULID! | ✓ |
readRatePackageAdjustment
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: RatePackageAdjustment!
| 인자 | 타입 | 필수 |
|---|---|---|
id | ULID! | ✓ |
readRatePlan
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: RatePlan!
| 인자 | 타입 | 필수 |
|---|---|---|
id | ULID! | ✓ |
readRatePlans
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: [RatePlan!]!목록
| 인자 | 타입 | 필수 |
|---|---|---|
accommodationId | ULID | — |
readRates
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: [Rate!]!목록
| 인자 | 타입 | 필수 |
|---|---|---|
accommodationId | ULID | — |
readRatesByCurrency
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: [Rate!]!목록
| 인자 | 타입 | 필수 |
|---|---|---|
currency | Currency! | ✓ |
accommodationId | ULID | — |
역할 및 권한 (2)
readRole
@roleGuard(role: MANAGER, access: READ): Only the user with the role of 'MANAGER' and the access permission of 'READ' can access this object (field).
반환: Role!
| 인자 | 타입 | 필수 |
|---|---|---|
id | ULID! | ✓ |
readRoles
@roleGuard(role: MANAGER, access: READ): Only the user with the role of 'MANAGER' and the access permission of 'READ' can access this object (field).
반환: [Role!]!목록
| 인자 | 타입 | 필수 |
|---|---|---|
accommodationId | ULID | — |
객실 관리 (3)
readRoomType
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: RoomType!
| 인자 | 타입 | 필수 |
|---|---|---|
id | ULID! | ✓ |
readRoomTypes
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: [RoomType!]!목록
| 인자 | 타입 | 필수 |
|---|---|---|
accommodationId | ULID | — |
readRoomTypesForIntegration
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: [RoomTypeForIntegration!]!목록
부가 서비스 (2)
readServiceItemFigures
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: [ServiceItemFigure!]!목록
readServiceKeys
@roleGuard(role: ROOT, access: READ): Only the user with the role of 'ROOT' and the access permission of 'READ' can access this object (field).
반환: [JSON!]!목록
태그 관리 (2)
readInclusionTags
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: [Tag!]!목록
| 인자 | 타입 | 필수 |
|---|---|---|
accommodationId | ULID | — |
inclusionId | ULID | — |
readTags
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: [Tag!]!목록
| 인자 | 타입 | 필수 |
|---|---|---|
accommodationId | ULID | — |
사용자 관리 (8)
readInvitations
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: InvitedUser!
| 인자 | 타입 | 필수 |
|---|---|---|
userId | ULID | — |
readInvitedUsers
@roleGuard(role: MANAGER, access: READ): Only the user with the role of 'MANAGER' and the access permission of 'READ' can access this object (field).
반환: [InvitedUser!]!목록
| 인자 | 타입 | 필수 |
|---|---|---|
accommodationId | ULID | — |
readUser
@roleGuard(role: USER, access: READ): Only the user with the role of 'USER' and the access permission of 'READ' can access this object (field).
반환: User!
| 인자 | 타입 | 필수 |
|---|---|---|
id | ULID! | ✓ |
readUsers
@roleGuard(role: MANAGER, access: READ): Only the user with the role of 'MANAGER' and the access permission of 'READ' can access this object (field).
반환: [User!]!목록
| 인자 | 타입 | 필수 |
|---|---|---|
accommodationId | ULID | — |
verifyEmail
반환: Boolean!
| 인자 | 타입 | 필수 |
|---|---|---|
email | String! | ✓ |
isUnset | Boolean | — |
verifyPhone
반환: Boolean!
| 인자 | 타입 | 필수 |
|---|---|---|
phone | String! | ✓ |
isUnset | Boolean | — |
verifyRefreshToken
반환: JSON!
| 인자 | 타입 | 필수 |
|---|---|---|
refreshToken | JWT! | ✓ |
verifyToken
반환: JSON!
| 인자 | 타입 | 필수 |
|---|---|---|
token | JWT! | ✓ |