surrealdb / surrealdb.go

SurrealDB SDK for Golang
https://surrealdb.com
Apache License 2.0
232 stars 60 forks source link

Feature: Added support for inserting multiple entries #131

Closed kharbanda14 closed 5 months ago

kharbanda14 commented 5 months ago

Added db method to insert multiple records at once, with updated readme file and test.

Method CreateMany calls Query method with the insert query based on the documentation.

Surreal DB Version : 1.3.1

kharbanda14 commented 5 months ago

After searching, the bulk insert functionality already exists by using db.Insert() method.