Skip to content
Snippets Groups Projects
Commit d3cf4869 authored by Anatole ROMON's avatar Anatole ROMON
Browse files

resolvers des divers messages

parent 674b3109
No related branches found
No related tags found
No related merge requests found
...@@ -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];
......
...@@ -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) => {
......
...@@ -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!
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment