You are here

function social_graphql_update_dependencies in Open Social 10.2.x

Same name and namespace in other branches
  1. 10.3.x modules/custom/social_graphql/social_graphql.install \social_graphql_update_dependencies()

Implements hook_update_dependencies().

File

modules/custom/social_graphql/social_graphql.install, line 26
Install, update and uninstall functions for the social_graphql module.

Code

function social_graphql_update_dependencies() {

  // Run the update hook only after an update hook in social_core.
  $dependencies['social_graphql'][8901] = [
    'social_core' => 10103,
  ];
  return $dependencies;
}