Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mojoaar/psarangodb
PowerShell module for ArangoDB
https://github.com/mojoaar/psarangodb
aql arangodb database module opensource powershell psgallery
Last synced: 8 days ago
JSON representation
PowerShell module for ArangoDB
- Host: GitHub
- URL: https://github.com/mojoaar/psarangodb
- Owner: mojoaar
- Created: 2022-06-10T19:04:06.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-11-10T11:08:44.000Z (about 2 years ago)
- Last Synced: 2024-11-06T20:07:21.346Z (about 2 months ago)
- Topics: aql, arangodb, database, module, opensource, powershell, psgallery
- Language: PowerShell
- Homepage: https://www.powershellgallery.com/packages/PSArangoDB/
- Size: 50.8 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PSArangoDB - PowerShell Module
This module provides a series of functions to work with the [ArangoDB](https://www.arangodb.com) API. Use Get-Help on the functions to get further details of usage.
## Requirements
Requires PowerShell 5.1 or above.
## Usage
### 1. PSGallery
Install module from PSGallery.
`Find-Module PSArangoDB -Repository PSGallery | Install-Module`
### 2. Manual
Download or clone the latest files and place the module folder in your PowerShell profile directory (i.e. the `Modules` directory under wherever `$profile` points to in your PS console) and run:
`Import-Module PSArangoDB`
Once you've done this, all the cmdlets will be at your disposal, you can see a full list using `Get-Command -Module PSArangoDB`. Remember to run Set-Environment before beginning to work with ArangoDB.## Functions
* Get-Database
* Get-Document
* New-AQLQuery
* New-Document
* Remove-Document
* Set-Environment
* Update-Document## Changelog
* 0.0.4 - 10-11-2022
* Fix content-type/utf8 with -ContentType
* 0.0.3 - 10-11-2022
* Fix content-type/utf8 for header in Set-Environment
* 0.0.2 - 17-06-2022
* Added pagination support for Get-Document
* 0.0.1 - 11-06-2022
* Initial release of module