| Maintainer | Toshio Ito <debug.ito@gmail.com> |
|---|---|
| Safe Haskell | None |
| Language | Haskell2010 |
NetSpider.Query
Contents
Description
Synopsis
- data Query n na fla sla
- defQuery :: Eq n => [n] -> Query n na fla fla
- startsFrom :: Query n na fla sla -> [n]
- unifyLinkSamples :: Query n na fla sla -> LinkSampleUnifier n na fla sla
Query type
data Query n na fla sla Source #
Query for snapshot graph. You can get the default Query by
defQuery function, and customize its fields by the accessor
functions.
- Type
n: node ID - Type
na: node attributes - Type
fla: attributes of found links. - Type
sla: attributes of snapshot links. Converted fromflabyunifyLinkSamples.
accessor functions
startsFrom :: Query n na fla sla -> [n] Source #
Nodes from which the Spider starts traversing the history graph.
unifyLinkSamples :: Query n na fla sla -> LinkSampleUnifier n na fla sla Source #
See the document of LinkSampleUnifier.
Default: unifyToOne.