Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ability to serialize data flow graph #28

Closed
curran opened this issue May 22, 2016 · 5 comments
Closed

Add ability to serialize data flow graph #28

curran opened this issue May 22, 2016 · 5 comments
Milestone

Comments

@curran
Copy link
Member

curran commented May 22, 2016

Maybe something like

ReactiveModel.serializeGraph()
@curran curran added this to the 1.0 milestone May 23, 2016
@curran
Copy link
Member Author

curran commented May 23, 2016

Depends on datavis-tech/graph-data-structure#9

@curran
Copy link
Member Author

curran commented May 24, 2016

Part of reactive-model 1.0 #31

@curran
Copy link
Member Author

curran commented May 25, 2016

Necessary for #32

@curran
Copy link
Member Author

curran commented May 25, 2016

Woohoo now looks like this

{
  "nodes": [
    {
      "id": "fullName"
    },
    {
      "id": "firstName"
    },
    {
      "id": "lastName"
    }
  ],
  "links": [
    {
      "source": "firstName",
      "target": "fullName"
    },
    {
      "source": "lastName",
      "target": "fullName"
    }
  ]
}

@curran curran closed this as completed in d1093d1 May 25, 2016
@curran
Copy link
Member Author

curran commented May 26, 2016

  • Add documentation

@curran curran reopened this May 26, 2016
@curran curran closed this as completed in ee54212 May 26, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant