OBJECT
Query
link GraphQL Schema definition
1 type Query { 2 3 (: VideoId!): AdobeLiveVideo 4 5 (: String): [AdobeOffer!]! 6 7 # Arguments 8 # shouldFetchAll: If true, will fetch all announcements, even 9 # non-live announcements. Requires user to be an admin. 10 (: Boolean): [Announcement] 11 12 (: String, : AssetSearchFilter, : Int, : query): AssetConnection 13 14 (: String, : Int): BlogFeaturedCreativeConnection 15 16 # Arguments 17 # first: Max items for one page is 50. If "first" is set to more 18 # than that, it will only fetch 100 items 19 ( 20 : String, 21 : BlogSlug, 22 : CategorySlug, 23 : Int, 24 : BlogPostType, 25 : [BlogSortType] 26 ): PostConnection 27 28 # Arguments 29 # adobeIds: This will accept up to 100 Adobe ids. Any id past 100 30 # will be disregarded. 31 # userIds: This will accept up to 100 Behance user ids. Any id 32 # past 100 will be disregarded. 33 (: [String], : [Int]): [UserStat] 34 35 # Returns subscription creators to display in for you and galleries 36 : [User!] 37 38 # Arguments 39 # excludeEntities: List of entities to exclude from the results 40 # (max 1000 ids, any additional will be ignored). 41 # excludeProjectIds: Deprecated: use `excludeEntities` instead. 42 # This is ignored if `excludeEntities` is used. 43 # extraEntityTypes: Entities of what types should be returned 44 # extra 45 # first: Max items for one page is 100. If "first" is set to more 46 # than that, it will only fetch 100 items 47 # followedCategorySlugs: List of categories to simulate the 48 # viewer is following. 49 ( 50 : String, 51 : [ForYouFeedExcludeEntity!], 52 : [Int], 53 : [ForYouFeedItemEntityType!], 54 : Int, 55 : [String] 56 ): ForYouFeedItemConnection 57 58 # Options for creating a freelance service 59 : FreelanceServiceOptions! 60 61 : [Gallery] 62 63 (: String!): Gallery 64 65 (: String!, : String!): Subcategory 66 67 : [GatekeeperRule] 68 69 ( 70 : Int, 71 : Float, 72 : Float, 73 : url! 74 ): [String] 75 76 # Arguments 77 # embed: Embed code 78 (: EmbedMediaCode!): IframeEmbedData 79 80 (: ModuleId): ImageModule 81 82 # Returns a temporary download url to inbox file attachment. 83 (: String!): String! 84 85 (: url): Boolean 86 87 (: url): Boolean 88 89 # Arguments 90 # id: Job ID as integer value 91 (: JobId!): JobItem 92 93 : JobCounts 94 95 # Arguments 96 # first: Max items for one page is 48. If "first" is set to more 97 # than that, it will only fetch 48 items 98 (: String, : JobSearchFilter, : Int, : query): JobItemConnection 99 100 # Arguments 101 # first: Max items for one page is 100. If "first" is set to more 102 # than that, it will only fetch 100 items 103 ( 104 : String, 105 : LightroomAssetType, 106 : Int 107 ): UserLightroomActivityFeedConnection 108 109 (: Int!): Moodboard 110 111 # Arguments 112 # ids: This will accept up to 25 moodboard ids. Any id past 25 113 # will be disregarded. 114 (: [Int]!): [Moodboard]! 115 116 # Arguments 117 # extraEntityTypes: Entities of what types should be returned 118 # extra 119 # first: Max items for one page is 100. If "first" is set to more 120 # than that, it will only fetch 100 items 121 ( 122 : String, 123 : [ForYouFeedItemEntityType!], 124 : Int 125 ): UserNetworkFeedConnection 126 127 (: String!, : String!): NFT 128 129 # Arguments 130 # offset_ts: Offset timestamp. Cannot be combined with onset_ts. 131 # onset_ts: Onset timestamp. Cannot be combined with offset_ts. 132 ( 133 : String, 134 : Int, 135 : Int, 136 : Int, 137 : Boolean 138 ): [Notification] 139 140 # Arguments 141 # viewType: Specifies the logic how the onboarding categories are 142 # chosen 143 (: OnboardingViewType): [OnboardingCategory] 144 145 # Arguments 146 # id: Project ID as integer value 147 (: ProjectId!): Project 148 149 (: ModuleId): ProjectModule 150 151 # Arguments 152 # ids: This will accept up to 100 ids. Any id past 100 will be 153 # disregarded. 154 (: [Int]!): [Tag] 155 156 # Arguments 157 # ids: This will accept up to 25 project ids. Any id past 25 will 158 # be disregarded. 159 (: [Int]!): [Project]! 160 161 # Arguments 162 # first: Max items for one page is 100. If "first" is set to more 163 # than that, it will only fetch 100 items 164 (: String, : Int): UserPsxActivityFeedConnection 165 166 ( 167 : String, 168 : SearchResultFilter, 169 : Int!, 170 : query, 171 : SearchType! 172 ): SearchResultItemConnection 173 174 # Fetches pre-defined filter values for search 175 : SearchFilters! 176 177 # Return related shortcuts to a search input for display of quick actions 178 # 179 # Arguments 180 # query: The search query 181 ( 182 : Int, 183 : String!, 184 : [SearchShortcutType] 185 ): [SearchShortcut!]! 186 187 # Fetches recommended auto-completed search terms for a given input. 188 # 189 # Arguments 190 # limit: Max limit value is 100 191 # recommendationsStartCharacterNum: When the term hits this 192 # amount of characters, recommended terms are returned instead of basic 193 # auto-complete. A value of -1 will disable the recommendation portion of this 194 # algo. 195 # term: If left empty, will return dynamic or static suggestions 196 # based on auth status. For characters less than the value of 197 # recommendationsStartCharacterNum, it does a basic prefix-based ElasticSearch 198 # lookup. Then, at the character defined by recommendationsStartCharacterNum, it 199 # does another ES lookup, takes top term, and offloads to Neo4j rec algo. If the 200 # Neo4j recs for the top term are not cached, it calls to generate them, but on 201 # that request it will return just ES auto-complete data, and then soon after on 202 # subsequent requests it will return real recommended results. 203 ( 204 : Int, 205 : Int, 206 : String 207 ): [SuggestedTerm!]! 208 209 # Gets the site configuration. 210 : SiteConfig! 211 212 # Returns Spark recommendations. Will return null if invalid algo or algo params. 213 # 214 # Arguments 215 # limit: Any limit higher than 100 will be maxed at 100. 216 ( 217 : String!, 218 : String!, 219 : Int! 220 ): [SparkRecommendation!] 221 222 # Fetches assets from Adobe Stock for a given search term. 223 # 224 # Arguments 225 # limit: Max limit value is 40 226 (: Int, : String!): [SearchStockAsset!] 227 228 # Arguments 229 # storySegmentIds: A list of story segment ids 230 (: [Int]): [StorySegment] 231 232 # Searches and returns tags for a given search query and tag category 233 (: TagSearchCategory, : TagSearchQuery): [Tag] 234 235 # Fetches/generates recommended tags for a given tag term. If the recommendation 236 # results for the given term have not yet been processed/cached, they will be 237 # generated asynchronously when you make the request and usually available within 238 # a few seconds in a subsequent request. 239 # 240 # Arguments 241 # limit: Max limit value is 100 242 (: Int, : String!): [SuggestedTerm]! 243 244 (: ContentLanguage): [Video!]! 245 246 (: String, : Int, : String): User 247 248 (: String!): UserLivestream 249 250 # Arguments 251 # method: Specify the processing logic used for the typeahead 252 # results. 253 # projectId: Optional project ID to limit results for MENTIONS 254 # method. If specified, the project owner will be included as the first result. 255 ( 256 : TypeaheadType, 257 : Int, 258 : UserTypeaheadQuery 259 ): [User!]! 260 261 # Arguments 262 # adobeIds: This will accept up to 50 Adobe ids. Any id past 50 263 # will be disregarded. 264 # userIds: This will accept up to 50 Behance user ids. Any id 265 # past 50 will be disregarded. 266 (: [String], : [Int]): [User] 267 268 (: ContentLanguage): [Video!]! 269 270 # Arguments 271 # first: Max videos for one page is 24. If "first" is set to more 272 # than that, it will only fetch 24 videos 273 ( 274 : String, 275 : VideoSearchFilter, 276 : Int, 277 : VideoSearchQuery 278 ): VideoConnection 279 280 : Viewer 281 282 # Fetches web push notification for the specific entity (project, user 283 # livestream). 284 # 285 # Arguments 286 # entityId: Project ID or stream ID 287 ( 288 : String!, 289 : NotificationType! 290 ): WebPushNotification 291 292 (: String): VideoConnection 293 294 }
link Required by
This element is not required by anyone