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
d3cf4869
Commit
d3cf4869
authored
6 years ago
by
Anatole ROMON
Browse files
Options
Downloads
Patches
Plain Diff
resolvers des divers messages
parent
674b3109
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/graphql/connectors/connectors.js
+1
-1
1 addition, 1 deletion
src/graphql/connectors/connectors.js
src/graphql/resolvers.js
+53
-0
53 additions, 0 deletions
src/graphql/resolvers.js
src/graphql/typeDefs/objects.js
+16
-6
16 additions, 6 deletions
src/graphql/typeDefs/objects.js
with
70 additions
and
7 deletions
src/graphql/connectors/connectors.js
+
1
−
1
View file @
d3cf4869
...
@@ -309,7 +309,7 @@ export async function getYourGroupHostEventRequests(user, recipientUID){
...
@@ -309,7 +309,7 @@ export async function getYourGroupHostEventRequests(user, recipientUID){
//Don't forget the argument user is the guy who makes the request, not the user we want
//Don't forget the argument user is the guy who makes the request, not the user we want
export
const
getUser
=
(
user
,
uid
)
=>
{
export
const
getUser
=
(
user
,
uid
,
db
)
=>
{
const
refactorer
=
(
data
)
=>
{
const
refactorer
=
(
data
)
=>
{
if
(
typeof
data
.
brRoom
==
'
string
'
)
data
.
brRoom
=
[
data
.
brRoom
];
if
(
typeof
data
.
brRoom
==
'
string
'
)
data
.
brRoom
=
[
data
.
brRoom
];
...
...
This diff is collapsed.
Click to expand it.
src/graphql/resolvers.js
+
53
−
0
View file @
d3cf4869
...
@@ -255,6 +255,59 @@ export const resolvers = {
...
@@ -255,6 +255,59 @@ export const resolvers = {
}
}
},
},
PrivatePost
:
{
authors
:
async
function
(
obj
,
args
,
context
){
return
{
singleUser
:
await
connectors
.
getUser
(
context
.
user
,
obj
.
author_uid
,
obj
.
author_db
)
};
},
recipient
:
async
function
(
obj
,
args
,
context
){
return
{
singleGroup
:
await
connectors
.
getGroup
(
context
.
user
,
obj
.
recipient_uid
)
};
}
},
Question
:
{
authors
:
async
function
(
obj
,
args
,
context
){
return
{
singleUser
:
await
connectors
.
getUser
(
context
.
user
,
obj
.
author_uid
,
obj
.
author_db
)
};
},
recipient
:
async
function
(
obj
,
args
,
context
){
return
{
singleGroup
:
await
connectors
.
getGroup
(
context
.
user
,
obj
.
recipient_uid
)
};
},
forAnswer
:
function
(
obj
,
args
,
context
){
return
obj
.
for_answer
;
}
},
Answer
:
{
authors
:
async
function
(
obj
,
args
,
context
){
return
{
singleGroup
:
await
connectors
.
getGroup
(
context
.
user
,
obj
.
author_uid
)
};
},
recipient
:
async
function
(
obj
,
args
,
context
){
return
{
singleGroup
:
await
connectors
.
getGroup
(
context
.
user
,
obj
.
recipient_uid
)
};
},
forQuestion
:
function
(
obj
,
args
,
context
){
return
obj
.
for_question
;
}
},
// @rights viewer(obj.uid)
// @rights viewer(obj.uid)
Group
:
{
Group
:
{
__resolveType
:
async
(
obj
)
=>
{
__resolveType
:
async
(
obj
)
=>
{
...
...
This diff is collapsed.
Click to expand it.
src/graphql/typeDefs/objects.js
+
16
−
6
View file @
d3cf4869
...
@@ -44,6 +44,16 @@ const Group = `
...
@@ -44,6 +44,16 @@ const Group = `
# Dernière mise à jour du groupe.
# Dernière mise à jour du groupe.
updatedAt: String!
updatedAt: String!
# member requests
# Les posts prives dans ce groupe
# privatePosts: [PrivatePost]
# Les questions addressees à ce groupe
# questions: [Question]
# Les reponses donnees par ce groupe
# answers: [Answer]
}
}
# Le groupe de base, dont les membres sont des utilisateurs : binets, Kès...
# Le groupe de base, dont les membres sont des utilisateurs : binets, Kès...
...
@@ -165,8 +175,8 @@ const Message = `
...
@@ -165,8 +175,8 @@ const Message = `
title: String!
title: String!
content: String!
content: String!
authors: User
authors:
Author #
User
recipient: Group
recipient:
Recipient #
Group
}
}
# Question posée par un user à un groupe
# Question posée par un user à un groupe
...
@@ -177,8 +187,8 @@ const Message = `
...
@@ -177,8 +187,8 @@ const Message = `
title: String!
title: String!
content: String!
content: String!
authors: User
authors:
Author #
User
recipient: Group
recipient:
Recipient #
Group
# Une annonce éventuellement concernée par cette question.
# Une annonce éventuellement concernée par cette question.
# Null si la question ne concerne pas une annonce particulière
# Null si la question ne concerne pas une annonce particulière
...
@@ -197,8 +207,8 @@ const Message = `
...
@@ -197,8 +207,8 @@ const Message = `
title: String!
title: String!
content: String!
content: String!
authors: Group
authors:
Author #
Group
recipient: Group
recipient:
Recipient #
Group
# La question à laquelle cette Answer répond. Non-nullable bien sûr
# La question à laquelle cette Answer répond. Non-nullable bien sûr
forQuestion: Question!
forQuestion: Question!
...
...
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