Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
gdd-sigma-poc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Guillaume WANG
gdd-sigma-poc
Commits
c20ed528
Commit
c20ed528
authored
7 years ago
by
Anatole ROMON
Browse files
Options
Downloads
Patches
Plain Diff
Deplacement
parent
24df1e74
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/graphql/schema.js
+4
-1
4 additions, 1 deletion
src/graphql/schema.js
src/graphql/typeDefs/actions.js
+136
-0
136 additions, 0 deletions
src/graphql/typeDefs/actions.js
src/graphql/typeDefs/objects.js
+4
-136
4 additions, 136 deletions
src/graphql/typeDefs/objects.js
with
144 additions
and
137 deletions
src/graphql/schema.js
+
4
−
1
View file @
c20ed528
...
...
@@ -4,9 +4,12 @@
*/
import
{
makeExecutableSchema
}
from
'
graphql-tools
'
;
import
typeDefs
from
'
./typeDefs
'
;
import
actionDefs
from
'
./typeDefs/actions
'
;
import
objectDefs
from
'
./typeDefs/objects
'
;
import
{
resolvers
}
from
'
./resolvers
'
;
const
typeDefs
=
actionDefs
.
concat
(
objectDefs
);
const
schema
=
makeExecutableSchema
({
typeDefs
,
resolvers
...
...
This diff is collapsed.
Click to expand it.
src/graphql/typeDefs/actions.js
0 → 100644
+
136
−
0
View file @
c20ed528
const
RootTypes
=
`
# Requêtes
type Query {
accessGroups : GroupQuery
accessPosts : MessageQuery
accessUsers : UserQuery
asAdmin(groupUID: ID): AdminQuery
asSpeaker(groupUID: ID): AdminQuery
asMember(groupUID: ID): MemberQuery
asViewer(groupUID: ID): AdminQuery
}
type Mutation {
asAdmin(groupUID: String): AdminMutation
asSpeaker(groupUID: String): SpeakerMutation
asMember(groupUID: String): MemberMutation
asViewer(groupUID: String): ViewerMutation
}
`
;
const
subMutations
=
`
type AdminMutation {
isAdmin: Boolean
createSubgroup(
uid: ID = null,
name: String,
website: String,
description: String,
school: String
): Group
addUser(userid : String): User
removeUser(userid : String): User
addAdmin(userid : String): User
removeAdmin(userid : String): User
editGroup(
name: String,
website: String,
description: String,
school: String
): Group
}
type SpeakerMutation{
postEvent(name: String, date: String): Event
answerEventRequest(request: ID, accept : Boolean): Request
}
type MemberMutation {
leave: Group
}
type ViewerMutation {
requestJoin: Group
}
`
;
const
subQueries
=
`
"""
Requête pour obtenir un groupe.
"""
type GroupQuery{
allGroups: [Group]
allSimpleGroups: [SimpleGroup]
group(uid: ID) : Group
simpleGroup(uid : ID) : SimpleGroup
metaGroup(uid : ID) : MetaGroup
}
"""
Requête pour obtenir un message.
"""
type MessageQuery{
allMessages: [Message]
allEvents: [Event]
allPosts: [Post]
post(id: ID): Post
allAnnouncements: [Announcement]
}
type UserQuery{
user(uid: ID) : User
searchTOL(
givenName: String,
lastName: String,
nickname: String,
nationality: String,
school: String,
promotion: String,
groups: String,
studies: String,
sport: String,
phone: String,
mail: String,
adress: String,
ip: String
): [String]
}
# Requête à la base de donnée nécessitant d'être administrateur.
type AdminQuery{
isAdmin: Boolean
allRequests : AllRequests
}
type SpeakerQuery{
isSpeaker: Boolean
}
type MemberQuery{
isMember: Boolean
allMembers : [Group]
}
type ViewerQuery{
isViewer: Boolean
}
`
;
const
actionDefs
=
[
RootTypes
,
subQueries
];
export
default
typeDefs
;
This diff is collapsed.
Click to expand it.
src/graphql/typeDefs.js
→
src/graphql/typeDefs
/objects
.js
+
4
−
136
View file @
c20ed528
const
RootTypes
=
`
# Requêtes
type Query {
accessGroups : GroupQuery
accessPosts : MessageQuery
accessUsers : UserQuery
asAdmin(groupUID: ID): AdminQuery
asSpeaker(groupUID: ID): AdminQuery
asMember(groupUID: ID): MemberQuery
asViewer(groupUID: ID): AdminQuery
}
type Mutation {
asAdmin(groupUID: String): AdminMutation
asSpeaker(groupUID: String): SpeakerMutation
asMember(groupUID: String): MemberMutation
asViewer(groupUID: String): ViewerMutation
}
`
;
const
subMutations
=
`
type AdminMutation {
isAdmin: Boolean
createSubgroup(
uid: ID = null,
name: String,
website: String,
description: String,
school: String
): Group
addUser(userid : String): User
removeUser(userid : String): User
addAdmin(userid : String): User
removeAdmin(userid : String): User
editGroup(
name: String,
website: String,
description: String,
school: String
): Group
}
type SpeakerMutation{
postEvent(name: String, date: String): Event
answerEventRequest(request: ID, accept : Boolean): Request
}
type MemberMutation {
leave: Group
}
type ViewerMutation {
requestJoin: Group
}
`
;
const
subQueries
=
`
"""
Requête pour obtenir un groupe.
"""
type GroupQuery{
allGroups: [Group]
allSimpleGroups: [SimpleGroup]
group(uid: ID) : Group
simpleGroup(uid : ID) : SimpleGroup
metaGroup(uid : ID) : MetaGroup
}
"""
Requête pour obtenir un message.
"""
type MessageQuery{
allMessages: [Message]
allEvents: [Event]
allPosts: [Post]
post(id: ID): Post
allAnnouncements: [Announcement]
}
type UserQuery{
user(uid: ID) : User
searchTOL(
givenName: String,
lastName: String,
nickname: String,
nationality: String,
school: String,
promotion: String,
groups: String,
studies: String,
sport: String,
phone: String,
mail: String,
adress: String,
ip: String
): [String]
}
# Requête à la base de donnée nécessitant d'être administrateur.
type AdminQuery{
isAdmin: Boolean
allRequests : AllRequests
}
type SpeakerQuery{
isSpeaker: Boolean
}
type MemberQuery{
isMember: Boolean
allMembers : [Group]
}
type ViewerQuery{
isViewer: Boolean
}
`
;
const
User
=
`
# Utilisateurs
...
...
@@ -264,7 +131,8 @@ const Event = `
# Organisateurs
authors: [Group]
# Personnes qui participent à l'événement.
participants: [User]
participatingGroups: [Group]
participatingUsers: [User]
description: String
}
`
;
...
...
@@ -315,5 +183,5 @@ const Requests = `
`
;
const
type
Defs
=
[
RootTypes
,
Group
,
User
,
Message
,
Post
,
Announcement
,
Event
,
subMutations
,
subQueries
,
Requests
];
export
default
typeDefs
;
const
object
Defs
=
[
Group
,
User
,
Message
,
Post
,
Announcement
,
Event
,
subMutations
,
Requests
];
export
default
typeDefs
;
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment