Install & Compatibility
Where this runs
No compatibility data collected yet for this library.
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
mgclient.h
✓ #include <mgclient.h>
Connect to a Memgraph database instance
#include <mgclient.h>
#include <stdio.h>
int main() {
mg_connection *conn = mg_connect("127.0.0.1", 7687, NULL, NULL);
if (conn) {
printf("Connected to Memgraph.\n");
mg_disconnect(conn);
}
return 0;
}
Audit
Dependencies
No dependency data recorded yet.
Resources
No resource links recorded.