add_node: Generates the SQL to add a node to the database

Description Usage Arguments Value Examples

View source: R/add_node.R

Description

Generates the SQL to add a node to the database

Usage

1
add_node(data, identifier = NA)

Arguments

data

Data to be added to the node in a list format

identifier

The identifier for the node

Value

A SQL statement to add a node to a database

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
## Not run: 
library(simplegraphdb)
apple <- "apple_test.sqlite"
initialize(apple)

# Add nodes with data
atomic(apple, add_node(list(
  "name" = "Apple Computer Company",
  "type" = c("company", "start-up"),
  "founded" = "April 1, 1976"), 1))
atomic(apple, add_node(list(
  "name" = "Steve Wozniak",
  "type" = c("person", "engineer", "founder")), 2))
atomic(apple, add_node(list(
  "name" = "Steve Jobs",
  "type" = c("person", "designer", "founder")), 3))
atomic(apple, add_node(list(
  "name" = "Ronald Wayne",
  "type" = c("person", "administrator", "founder")), 4))
atomic(apple, add_node(list(
  "name" = "Mike Markkula",
  "type" = c("person", "investor")), 5))

## End(Not run)

simplegraphdb documentation built on March 12, 2021, 5:05 p.m.