Skip to content

mojoaar/psarangodb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

47 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PSArangoDB - PowerShell Module

This module provides a series of functions to work with the ArangoDB 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