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
ce343f79
Commit
ce343f79
authored
7 years ago
by
Wilson JALLET
Browse files
Options
Downloads
Patches
Plain Diff
Some new resolvers
parent
ac01a3d9
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/graphql/resolvers.js
+32
-16
32 additions, 16 deletions
src/graphql/resolvers.js
src/graphql/typeDefs/actions.js
+4
-2
4 additions, 2 deletions
src/graphql/typeDefs/actions.js
with
36 additions
and
18 deletions
src/graphql/resolvers.js
+
32
−
16
View file @
ce343f79
...
@@ -44,7 +44,25 @@ export const resolvers = {
...
@@ -44,7 +44,25 @@ export const resolvers = {
return
user
&&
connectors
.
getMetaGroupIfVisible
(
user
,
args
.
uid
);
return
user
&&
connectors
.
getMetaGroupIfVisible
(
user
,
args
.
uid
);
},
},
// message query
/*
* Message queries.
*/
allPosts
:
function
(
obj
,
args
,
context
)
{
console
.
log
(
"
Accessing all posts...
"
);
return
knex
.
select
().
from
(
"
posts
"
);
},
post
:
function
(
obj
,
args
,
context
)
{
return
knex
.
select
().
from
(
"
posts
"
).
where
(
'
id
'
,
args
.
id
).
then
(
res
=>
res
[
0
]);
},
allAnnouncements
:
function
(
obj
,
args
,
context
)
{
return
knex
.
select
().
from
(
"
announcements
"
);
},
allEvents
:
function
(
obj
,
args
,
context
)
{
return
knex
.
select
().
from
(
"
events
"
);
},
// user queries
// user queries
...
@@ -183,16 +201,14 @@ export const resolvers = {
...
@@ -183,16 +201,14 @@ export const resolvers = {
},
},
Post
:
{
authors
:
(
obj
,
args
,
context
)
=>
{
return
knex
.
select
().
from
(
'
groups
'
).
whereIn
(
'
uid
'
,
obj
.
authors
);
}
},
Message
:
{
Message
:
{
__resolveType
:
function
(
obj
){
__resolveType
:
function
(
obj
)
{
return
obj
.
type
;
return
obj
.
type
;
},
authors
:
(
obj
,
args
,
context
)
=>
{
return
knex
.
select
().
from
(
'
groups
'
).
whereIn
(
'
uid
'
,
obj
.
authors
);
}
}
},
},
...
@@ -231,15 +247,15 @@ export const resolvers = {
...
@@ -231,15 +247,15 @@ export const resolvers = {
// @rights viewer(obj.uid)
// @rights viewer(obj.uid)
Group
:
{
Group
:
{
__resolveType
:
(
obj
)
=>
{
__resolveType
:
(
obj
)
=>
{
console
.
log
(
obj
);
switch
(
obj
.
type
){
let
isSimple
=
knex
.
select
().
from
(
"
groups
"
).
where
(
"
uid
"
,
obj
.
uid
)
case
"
simple
"
:
.
then
(
res
=>
{
return
"
SimpleGroup
"
;
console
.
log
(
res
);
case
"
meta
"
:
return
res
;
return
"
MetaGroup
"
;
});
default
:
return
undefined
;
return
undefined
;
}
}
}
},
},
...
...
This diff is collapsed.
Click to expand it.
src/graphql/typeDefs/actions.js
+
4
−
2
View file @
ce343f79
...
@@ -14,10 +14,12 @@ const RootTypes = `
...
@@ -14,10 +14,12 @@ const RootTypes = `
# message queries
# message queries
allMessages: [Message]
allMessages: [Message]
allEvents: [Event]
message(id: ID!): Message
message(id: ID!): Message
allPosts: [Post]
post(id: ID!): Post
allEvents: [Event]
allAnnouncements: [Announcement]
allAnnouncements: [Announcement]
# user queries
# user queries
user(uid: ID!) : User
user(uid: ID!) : User
...
...
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