Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
haskell-gargantext
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
160
Issues
160
List
Board
Labels
Milestones
Merge Requests
14
Merge Requests
14
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gargantext
haskell-gargantext
Commits
6645b901
Verified
Commit
6645b901
authored
Jun 01, 2023
by
Przemyslaw Kaminski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[graphql] endpoint for returning context ngrams
parent
5401daf1
Pipeline
#4110
passed with stages
in 62 minutes and 22 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
40 additions
and
1 deletion
+40
-1
GraphQL.hs
src/Gargantext/API/GraphQL.hs
+3
-0
Context.hs
src/Gargantext/API/GraphQL/Context.hs
+19
-1
NodeContext.hs
src/Gargantext/Database/Query/Table/NodeContext.hs
+18
-0
No files found.
src/Gargantext/API/GraphQL.hs
View file @
6645b901
...
...
@@ -31,6 +31,7 @@ import Data.Morpheus.Types
,
Undefined
(
..
)
)
import
Data.Proxy
import
Data.Text
(
Text
)
import
Gargantext.API.Admin.Auth.Types
(
AuthenticatedUser
)
import
Gargantext.API.Admin.Orchestrator.Types
(
JobLog
)
import
Gargantext.API.Prelude
(
HasJobEnv
'
)
...
...
@@ -68,6 +69,7 @@ import Gargantext.API.Admin.Types (HasSettings)
data
Query
m
=
Query
{
annuaire_contacts
::
GQLA
.
AnnuaireContactArgs
->
m
[
GQLA
.
AnnuaireContact
]
,
context_ngrams
::
GQLCTX
.
ContextNgramsArgs
->
m
[
Text
]
,
contexts
::
GQLCTX
.
NodeContextArgs
->
m
[
GQLCTX
.
NodeContextGQL
]
,
contexts_for_ngrams
::
GQLCTX
.
ContextsForNgramsArgs
->
m
[
GQLCTX
.
ContextGQL
]
,
imt_schools
::
GQLIMT
.
SchoolsArgs
->
m
[
GQLIMT
.
School
]
...
...
@@ -112,6 +114,7 @@ rootResolver
rootResolver
=
RootResolver
{
queryResolver
=
Query
{
annuaire_contacts
=
GQLA
.
resolveAnnuaireContacts
,
context_ngrams
=
GQLCTX
.
resolveContextNgrams
,
contexts
=
GQLCTX
.
resolveNodeContext
,
contexts_for_ngrams
=
GQLCTX
.
resolveContextsForNgrams
,
imt_schools
=
GQLIMT
.
resolveSchools
...
...
src/Gargantext/API/GraphQL/Context.hs
View file @
6645b901
...
...
@@ -20,7 +20,7 @@ import Gargantext.Core.Types.Search (HyperdataRow(..), toHyperdataRow)
import
Gargantext.Database.Admin.Types.Hyperdata
(
HyperdataDocument
)
import
Gargantext.Database.Admin.Types.Node
(
ContextTitle
,
NodeId
(
..
),
NodeTypeId
,
UserId
,
unNodeId
)
import
Gargantext.Database.Prelude
(
CmdCommon
)
import
Gargantext.Database.Query.Table.NodeContext
(
getNodeContext
,
getContextsForNgramsTerms
,
ContextForNgramsTerms
(
..
))
import
Gargantext.Database.Query.Table.NodeContext
(
getNodeContext
,
getContextsForNgramsTerms
,
ContextForNgramsTerms
(
..
)
,
getContextNgrams
)
import
qualified
Gargantext.Database.Query.Table.NodeContext
as
DNC
import
Gargantext.Database.Schema.NodeContext
(
NodeContext
,
NodeContextPoly
(
..
))
import
Gargantext.Prelude
...
...
@@ -94,6 +94,12 @@ data NodeContextCategoryMArgs = NodeContextCategoryMArgs
,
category
::
Int
}
deriving
(
Generic
,
GQLType
)
data
ContextNgramsArgs
=
ContextNgramsArgs
{
context_id
::
Int
,
list_id
::
Int
}
deriving
(
Generic
,
GQLType
)
type
GqlM
e
env
=
Resolver
QUERY
e
(
GargM
env
GargError
)
type
GqlM'
e
env
a
=
ResolverM
e
(
GargM
env
GargError
)
a
...
...
@@ -112,6 +118,12 @@ resolveContextsForNgrams
resolveContextsForNgrams
ContextsForNgramsArgs
{
corpus_id
,
ngrams_terms
}
=
dbContextForNgrams
corpus_id
ngrams_terms
resolveContextNgrams
::
(
CmdCommon
env
)
=>
ContextNgramsArgs
->
GqlM
e
env
[
Text
]
resolveContextNgrams
ContextNgramsArgs
{
context_id
,
list_id
}
=
dbContextNgrams
context_id
list_id
-- DB
-- | Inner function to fetch the node context DB.
...
...
@@ -134,6 +146,12 @@ dbContextForNgrams node_id ngrams_terms = do
--lift $ printDebug "[dbContextForNgrams] contextsForNgramsTerms" contextsForNgramsTerms
pure
$
toContextGQL
<$>
contextsForNgramsTerms
dbContextNgrams
::
(
CmdCommon
env
)
=>
Int
->
Int
->
GqlM
e
env
[
Text
]
dbContextNgrams
context_id
list_id
=
do
lift
$
getContextNgrams
(
NodeId
context_id
)
(
NodeId
list_id
)
-- Conversion functions
toNodeContextGQL
::
NodeContext
->
NodeContextGQL
...
...
src/Gargantext/Database/Query/Table/NodeContext.hs
View file @
6645b901
...
...
@@ -33,6 +33,7 @@ module Gargantext.Database.Query.Table.NodeContext
,
getContextsForNgrams
,
ContextForNgrams
(
..
)
,
getContextsForNgramsTerms
,
getContextNgrams
,
ContextForNgramsTerms
(
..
)
,
insertNodeContext
,
deleteNodeContext
...
...
@@ -188,6 +189,23 @@ getContextsForNgramsTerms cId ngramsTerms = do
AND ngrams.terms IN ?) t
ORDER BY t.doc_count DESC
|]
getContextNgrams
::
HasNodeError
err
=>
NodeId
->
NodeId
->
Cmd
err
[
Text
]
getContextNgrams
contextId
listId
=
do
res
<-
runPGSQuery
query
(
contextId
,
listId
)
pure
$
(
\
(
PGS
.
Only
term
)
->
term
)
<$>
res
where
query
::
PGS
.
Query
query
=
[
sql
|
SELECT ngrams.terms
FROM context_node_ngrams
JOIN ngrams ON ngrams.id = ngrams_id
WHERE context_id = ?
AND node_id = ?
|]
------------------------------------------------------------------------
insertNodeContext
::
[
NodeContext
]
->
Cmd
err
Int
insertNodeContext
ns
=
mkCmd
$
\
conn
->
fromIntegral
<$>
(
runInsert_
conn
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment