OBJECT

Project

link GraphQL Schema definition

1type Project {
2
3adminFlags: ProjectAdminFlags
4
5adminNotices: [ProjectAdminNotice!]!
6
7aeroData: ProjectAeroData
8
9agencies: [Tag!]!
10
11allModules: [ProjectModule!]!
12
13autoTags: [AutoTag!]!
14
15brands: [Tag!]!
16
17canvasWidth: Int
18
19colors: Colors
20
21# Arguments
22# first: Max items for one page is 24
23comments(after: String, first: Int): ProjectCommentConnection!
24
25conceivedOn: Int!
26
27coverData: ProjectCover!
28
29covers: ProjectCoverImageSizes!
30
31createdOn: Int!
32
33creator: User!
34
35creatorId: Int!
36
37# The list of Behance users who should be recognized in the current project.
38credits: [User!]!
39
40description: String!
41
42descriptionShortened: String!
43
44editUrl: String!
45
46editorVersion: Int!
47
48features: [ProjectFeature]
49
50fields: [project_fields]
51
52hasMatureContent: Boolean!
53
54haveOwnersRecentlyGottenSocialEmail: Boolean!
55
56id: Int!
57
58isAppreciated: Boolean!
59
60isCommentingAllowed: Boolean!
61
62isFeatured: Boolean!
63
64isFounder: Boolean!
65
66isHiddenFromWorkTab: Boolean!
67
68isMatureReviewSubmitted: Boolean
69
70isOwner: Int!
71
72isPinnedToSubscriptionOverview: Boolean!
73
74isPrivate: Boolean!
75
76isPublished: Boolean!
77
78isSenseiRecommended: Boolean
79
80license: ProjectLicense!
81
82linkedAssets: [LinkedAsset!]!
83
84linkedAssetsCount: Int!
85
86matureAccess: String!
87
88modifiedOn: Int!
89
90# Arguments
91# first: Max items for one page is 24
92modules(after: String, first: Int): ProjectModuleConnection!
93
94name: String!
95
96networks: [UserNetworks]!
97
98owners: [User]!
99
100pendingCoowners: [User]
101
102premium: Int!
103
104privacyLevel: ProjectPrivacyLevel!
105
106publishedOn: Int!
107
108schools: [Tag!]!
109
110shortUrl: String!
111
112slug: String!
113
114sourceFiles: [SourceFile]
115
116stats: project_stats
117
118styles: ProjectStyle
119
120stylesInline: String!
121
122tags: [Tag!]!
123
124teams: [TeamItem!]!
125
126tools: [Tool]
127
128url: String!
129
130}