メインコンテンツまでスキップ

Query - 사용자 목록 조회

사용자 목록을 조회한다.


Schema

GraphQL Schema Documentation


Input Objects

KEYOBJECTDESC
filterUserInformationFilterInput사용자 조회 필터 정보 (필수)
adminPageBoolean관리자 페이지 여부

Objects

OBJECTDESC
SearchUserInformationDto사용자 검색 정보

Method

POST

{{url}}/graphql

Headers

KEYVALUE
AuthorizationSecurity365 JWT 토큰

Body

QUERY

query userInformations($filter: UserInformationFilterInput!, $adminPage: Boolean) {
userInformations(filter: $filter, adminPage: $adminPage) {
total
page
size
results {
id
indexDate
createdDate
modifiedDate
type
account
password
role
state
name
profileImage
companyCode
position
apiToken {
accessToken
refreshToken
__typename
}
sbsToken {
accessToken
refreshToken
__typename
}
webdavToken {
accessToken
refreshToken
__typename
}
loginAuthInfos {
type
loginId
__typename
}
__typename
}
searchAfter
__typename
}
}

Sample

VARIABLES

{
"filter": {
"page": 0,
"size": 2
},
"adminPage": true
}

RESPONSE

{
"data": {
"userInformations": {
"total": 54,
"page": 0,
"size": 2,
"results": [
{
"id": "0a945affed1a11eca5a9120930abec96",
"indexDate": 1660031230303,
"createdDate": 1655345664407,
"modifiedDate": 1660031230303,
"type": 0,
"account": "iadmin_softcamp11.onmicrosoft.com#EXT#@socamresearch.onmicrosoft.com",
"password": "",
"role": 0,
"state": 1,
"name": "Admin of Softcamp11",
"profileImage": null,
"companyCode": "3CJ55MSE-xLO7Sxt4-qUBKzbcs-XP2cgGEq",
"position": "",
"apiToken": null,
"sbsToken": null,
"webdavToken": null,
"loginAuthInfos": [
{
"type": "MS",
"loginId": "3e19aed8-5726-41f1-b0ee-d7a2200c173e",
"__typename": "LoginAuthInfoDto"
}
],
"__typename": "UserInformationDto"
},
{
"id": "9689683c33c311ed877b02b40c1aa6a9",
"indexDate": 1663815757841,
"createdDate": 1663115065558,
"modifiedDate": 1663815757841,
"type": 0,
"account": "naraymm_naver.com#EXT#@socamresearch.onmicrosoft.com",
"password": "",
"role": 0,
"state": 1,
"name": "Eun-Yeong Park",
"profileImage": null,
"companyCode": "3CJ55MSE-xLO7Sxt4-qUBKzbcs-XP2cgGEq",
"position": "",
"apiToken": null,
"sbsToken": null,
"webdavToken": null,
"loginAuthInfos": [
{
"type": "MS",
"loginId": "fb49ff02-d01b-4b11-b869-095eb62b1344",
"__typename": "LoginAuthInfoDto"
}
],
"__typename": "UserInformationDto"
}
],
"searchAfter": [
"Eun-Yeong Park ",
"9689683c33c311ed877b02b40c1aa6a9"
],
"__typename": "SearchUserInformationDto"
}
}
}